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

@spencerbeggs/claude-coordinator-mcp

v0.1.0

Published

MCP stdio bridge for Claude Coordinator

Readme

@spencerbeggs/claude-coordinator-mcp

MCP stdio bridge that exposes coordination tools to Claude Code instances, enabling them to communicate through the coordinator server.

Features

  • MCP tool integration - Expose coordination as Claude Code tools
  • stdio transport - Standard MCP communication protocol
  • Lazy connection - Connect to server only when needed
  • Consistent responses - All tools return predictable JSON format

Installation

npm install @spencerbeggs/claude-coordinator-mcp

Quick Start

Configure in Claude Code

Add to your Claude Code MCP settings:

{
  "mcpServers": {
    "claude-coordinator": {
      "command": "npx",
      "args": ["@spencerbeggs/claude-coordinator-mcp"]
    }
  }
}

With a custom server URL:

{
  "mcpServers": {
    "claude-coordinator": {
      "command": "npx",
      "args": [
        "@spencerbeggs/claude-coordinator-mcp",
        "--url=ws://192.168.1.100:3030"
      ]
    }
  }
}

Run Standalone

# Default URL (ws://localhost:3030)
npx @spencerbeggs/claude-coordinator-mcp

# Custom URL
npx @spencerbeggs/claude-coordinator-mcp --url=ws://server:3030

Available Tools

Once configured, Claude Code can use these tools:

Session Tools

| Tool | Parameters | Description | | ---- | ---------- | ----------- | | coordinator_join | name, role, repoPath | Join session as agent | | coordinator_leave | (none) | Leave current session | | coordinator_list_agents | (none) | List connected agents |

Context Tools

| Tool | Parameters | Description | | ---- | ---------- | ----------- | | coordinator_share_context | key, value, tags? | Share context entry | | coordinator_get_context | key | Get context by key | | coordinator_list_context | tags?, createdBy? | List context entries |

Question Tools

| Tool | Parameters | Description | | ---- | ---------- | ----------- | | coordinator_ask | question, to? | Ask a question | | coordinator_answer | questionId, answer | Answer a question | | coordinator_pending_questions | agentId? | List pending questions |

Decision Tools

| Tool | Parameters | Description | | ---- | ---------- | ----------- | | coordinator_log_decision | decision, rationale? | Log a decision | | coordinator_list_decisions | (none) | List all decisions |

Usage Example

Once configured, Claude Code can coordinate with other instances:

User: "Join the coordinator as a source agent"

Claude: I'll join the coordination session.
[Uses coordinator_join tool with role="source"]

User: "Share that we're using React 18"

Claude: I'll share that context.
[Uses coordinator_share_context with key="framework" value="React 18"]

User: "Ask the other agent what testing framework they prefer"

Claude: I'll ask the question.
[Uses coordinator_ask with question="What testing framework do you prefer?"]

Response Format

All tools return JSON with consistent structure:

// Success
{ "success": true, "agent": {...}, "sessionId": "..." }

// Error
{ "success": false, "error": "Error description" }

Documentation

License

MIT