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

ai-bridge-mcp

v0.1.0

Published

MCP bridge server for AI-to-AI communication between Claude Code and Copilot CLI

Readme

AI Bridge MCP

An MCP server that enables AI-to-AI communication between coding agents like Claude Code and GitHub Copilot. Both agents connect to this server and gain shared tools for messaging, task delegation, and context sharing.

Quick Start

Automated Setup

# Configure both Claude Code and Copilot at once
npx ai-bridge-mcp setup

# Or configure individually
npx ai-bridge-mcp setup claude
npx ai-bridge-mcp setup copilot

Manual Setup

Add to your MCP config manually if you prefer.

Claude Code (~/.claude/settings.json):

{
  "mcpServers": {
    "ai-bridge": {
      "command": "npx",
      "args": ["-y", "ai-bridge-mcp"]
    }
  }
}

VS Code Copilot (~/.vscode/mcp.json):

{
  "servers": {
    "ai-bridge": {
      "command": "npx",
      "args": ["-y", "ai-bridge-mcp"]
    }
  }
}

Copilot CLI (~/.copilot/mcp-config.json):

{
  "mcpServers": {
    "ai-bridge": {
      "command": "npx",
      "args": ["-y", "ai-bridge-mcp"]
    }
  }
}

Available Tools

| Tool | Description | |------|-------------| | bridge_register | Register yourself as an AI agent on the bridge | | bridge_send | Send a message to another AI agent | | bridge_inbox | Read messages sent to you | | bridge_delegate_task | Delegate a task to another agent | | bridge_update_task | Update the status of a task assigned to you | | bridge_tasks | List tasks, optionally filtered by agent or status | | bridge_agents | See which agents are registered | | bridge_clear | Clear all bridge data |

How It Works

Both agents connect to the same MCP server. State is stored in ~/.ai-bridge/state.json so multiple server processes (one per agent) share the same data.

Example flow:

  1. Claude Code registers as claude-code and sends a task to copilot
  2. Copilot checks its inbox, sees the task, and works on it
  3. Copilot updates the task status and sends results back
  4. Claude Code reads the results from its inbox

Message Types

context | task | task_result | review | review_result | question | answer | ping | pong

Development

git clone https://github.com/raedlouati/ai-bridge-mcp.git
cd ai-bridge-mcp
npm install
npm run dev

License

MIT