npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

getsticky

v0.1.0

Published

AI conversations on an infinite canvas — branch, diagram, and explore ideas with Claude

Readme


Quick Start

npx getsticky

Or install globally:

npm install -g getsticky && getsticky
# or
yarn global add getsticky && getsticky

Then open http://localhost:2528 in your browser.

Connect Claude Code

claude mcp add --scope user getsticky npx getsticky mcp

Using --scope user makes the MCP server available globally across all your projects. Every Claude Code session will connect to the same canvas and database.

Or add manually to a project's .mcp.json:

{
  "mcpServers": {
    "getsticky": {
      "command": "npx",
      "args": ["getsticky", "mcp"]
    }
  }
}

Claude Code can now create nodes, diagrams, sticky notes, and more — directly on your canvas.

Options

| Flag | Default | Description | |------|---------|-------------| | --port <number> | 2528 | Port to run the server on | | --data <path> | ~/.getsticky/data | Data directory for SQLite and vector storage |

Initialize project detection in any repo:

getsticky init [name]

Features

  • Rich Text Editor — TipTap-powered block editor with syntax-highlighted code blocks, markdown shortcuts, and slash commands
  • Sticky Notes — 11 colors with auto-fitting text, great for brainstorming and quick annotations
  • Architecture Diagrams — Diagram boxes with labeled edges, comment sidebars, and auto-layout
  • Lists — Organize items with status tracking (todo, in-progress, done)
  • Comment Threads — Inline commenting on any node; discuss with Claude and resolve threads
  • MCP Integration — 30+ tools for Claude Code to read, create, and manipulate everything on the canvas
  • Multi-project & Multi-board — Organize work across projects with auto-detection via .getsticky.json
  • Auto-layout — Dagre-powered hierarchical arrangement keeps diagrams clean
  • Real-time Sync — WebSocket bridge pushes changes between Claude Code and the UI instantly
  • Code Reviews — Put code on the canvas, comment inline with Claude, and resolve threads

What is GetSticky?

GetSticky is an infinite canvas where Claude Code and humans collaborate visually. Instead of a linear chat window, it gives you a spatial workspace: branch conversations into parallel threads, diagram system architectures, annotate with comments, and organize ideas with sticky notes. Everything is persisted locally in SQLite and bridged to Claude via the Model Context Protocol (MCP).

Why?

Linear chat loses context. After a hundred messages, the thread you need is buried. A canvas doesn't — every idea stays where you put it, connected to the things it relates to. Visual thinking combined with AI gives you better outcomes: you see the whole picture, Claude fills in the details, and nothing gets lost.

Hackathon & Status

GetSticky was built as an entry for the "Built with Opus 4.6" — a Claude Code virtual hackathon.

This is an alpha release. It's stable enough to use day-to-day, but rough edges remain. Active development is continuing.

Contributing

Contributions are welcome! Here's how to get started locally:

# Clone the repo
git clone https://github.com/gabrieli/getsticky.git
cd getsticky

# Install root dependencies
npm install

# Install and build the server
cd server && npm install && npm run build && cd ..

# Install and run the frontend dev server
cd getsticky-app && npm install && npm run dev

For testing information, see getsticky-app/TESTING.md.

Found a bug or have an idea? Open an issue.

Acknowledgements

GetSticky is built on the shoulders of incredible open source projects:

  • React Flow (@xyflow/react) — the infinite canvas that makes everything possible
  • TipTap — rich text editing, beautifully extensible
  • better-sqlite3 — fast, reliable local database
  • LanceDB — embedded vector search for semantic context
  • MCP SDK (@modelcontextprotocol/sdk) — the bridge between Claude Code and the canvas
  • Dagre (@dagrejs/dagre) — graph layout algorithms for auto-arrangement
  • lowlight — syntax highlighting for code blocks
  • xterm.js — terminal emulation in the browser
  • react-markdown — markdown rendering
  • Vite — lightning-fast build tooling
  • Vitest & Playwright — testing frameworks

And of course, React, TypeScript, and the broader open source community. None of this would be possible without the creativity and generosity of the people who build and share their work freely.

License

MIT