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

@annotakit/mcp

v0.1.0

Published

MCP server for annotaKit - exposes browser annotations to AI agents

Readme

@annotakit/mcp

MCP (Model Context Protocol) server for annotaKit. Exposes browser annotations to AI agents like Claude Desktop and Claude Code in real time.

How it works

Browser (annotaKit component)
  -> HTTP POST /api/sessions/:id/sync
  -> In-memory store (sessions + annotations with lifecycle status)
  -> MCP tools (9 tools exposed to AI agents)
  -> AI agent (Claude Desktop, Claude Code, etc.)

The browser bridge sends annotations to an HTTP server. The MCP server shares the same in-memory store and exposes the data to AI agents via stdio transport.

Setup

1. Install

pnpm add @annotakit/mcp

2. Start the MCP server

npx @annotakit/mcp
# or
node node_modules/@annotakit/mcp/dist/bin.js

This starts:

  • HTTP server on port 4156 (for the browser bridge)
  • MCP server on stdio (for AI agents)

Use --port <number> to change the HTTP port.

3. Wire up the browser bridge

In your Svelte layout (e.g. +layout.svelte):

<script lang="ts">
  import { Annotakit, annotakitState } from 'annotakit'
  import { createMcpBridge } from '@annotakit/mcp/bridge'
  import { browser } from '$app/environment'
  import { onDestroy } from 'svelte'

  const mcpBridge = browser ? createMcpBridge() : null

  $effect(() => {
    if (mcpBridge) {
      mcpBridge.sync(annotakitState.annotations, window.location.href, document.title)
    }
  })

  onDestroy(() => mcpBridge?.disconnect())
</script>

<Annotakit />

The bridge silently handles errors, so a missing MCP server never breaks your app.

4. Connect an AI agent

Claude Code - add to .claude/settings.json:

{
  "mcpServers": {
    "annotakit": {
      "command": "node",
      "args": ["/path/to/node_modules/@annotakit/mcp/dist/bin.js"]
    }
  }
}

Claude Desktop - add to your MCP config:

{
  "mcpServers": {
    "annotakit": {
      "command": "node",
      "args": ["/path/to/node_modules/@annotakit/mcp/dist/bin.js"]
    }
  }
}

MCP Tools

| Tool | Description | |------|-------------| | annotakit_list_sessions | List active browser sessions | | annotakit_get_session | Get session details + annotation summary | | annotakit_get_annotations | Get annotations, filter by status, control detail level | | annotakit_get_pending | Get all pending annotations across sessions | | annotakit_acknowledge | Mark annotation as seen | | annotakit_resolve | Mark as addressed with optional summary | | annotakit_dismiss | Reject with reason | | annotakit_reply | Add agent response to annotation thread | | annotakit_watch | Long-poll until new annotations arrive |

Bridge API

import { createMcpBridge } from '@annotakit/mcp/bridge'

const bridge = createMcpBridge({
  serverUrl: 'http://localhost:4156', // default
  sessionId: 'custom-id',            // auto-generated if omitted
})

bridge.sync(annotations, url, title) // send annotations to MCP server
bridge.disconnect()                   // notify server on unmount
bridge.sessionId                      // read the session ID

HTTP API

POST   /api/sessions/:sessionId/sync   - Receive annotations from browser
DELETE /api/sessions/:sessionId         - Browser tab closing
GET    /api/events?sessionId=           - SSE stream of annotation events
GET    /api/health                      - Health check

Testing

# Start the server
node packages/mcp/dist/bin.js

# Health check
curl http://localhost:4156/api/health

# Use the MCP Inspector
npx @modelcontextprotocol/inspector node packages/mcp/dist/bin.js