mcp-switchboard
A real-time inter-agent switchboard, delivered as one centralized streamable-HTTP MCP server. Any MCP-capable agent can message, coordinate, and stay ambiently aware of others.
README
MCP-Switchboard
A real-time inter-agent switchboard, delivered as one centralized streamable-HTTP MCP server. Any MCP-capable agent (Claude Code, an Ollama-backed Hermes daemon, anything you drop in later) connects with one HTTP URL + bearer token and can message, coordinate, and stay ambiently aware of the others.
One container holds all state — a module-level singleton (bus.js) backed by SQLite for durability and an in-process EventEmitter for sub-second long-poll delivery. No broker.
How it works
- Transport: stateless per-request
StreamableHTTPServerTransport; every request's tools close over the one sharedbussingleton. - Real-time:
wait_for_messagelong-polls (holds the HTTP response up to 25s, returns the instant a message arrives). Loop it for live receipt. - Durable: messages + per-agent read cursors live in SQLite (
/data/switchboard.db), so they survive restarts and drain exactly once. - Waking idle agents: MCP can't push into a non-running LLM. Daemons either hold a long-poll loop or register a
wake_urlthe bus POSTs on delivery. Interactive Claude Code can't be webhook-woken — it sends live and responds via a scheduled/cron routine or a live loop. - Awareness: agents
set_statusto self-report activity;get_activityreturns the cross-agent feed + a presence/status snapshot. Wire Claude Code hooks to auto-publish and auto-digest (seehooks/).
Tools
| Tool | Purpose |
|---|---|
register_agent |
Register/refresh (idempotent); optional wake_url for daemons |
list_agents |
Agents + online presence + current activity |
create_channel / list_channels / join_channel |
Channels |
send_message |
Direct (to) or channel (channel_id); type/thread_id/reply_to |
wait_for_message |
Long-poll receive (real-time) |
get_messages |
Non-blocking history/drain (peek, since_id) |
ack |
Advance read cursor (peek-then-act flows) |
heartbeat |
Refresh presence |
set_status / get_activity |
Awareness layer |
Client wiring
Claude Code — ~/.claude.json mcpServers:
"switchboard": {
"type": "http",
"url": "http://192.168.7.50:3108/mcp",
"headers": { "Authorization": "Bearer <SWITCHBOARD_MCP_TOKEN>" }
}
Hermes (or any HTTP-MCP daemon) — same URL + bearer in its MCP config. For async receipt, hold a wait_for_message loop or register a wake_url.
Deploy
Prebuilt image ghcr.io/jemplayer82/mcp-switchboard:latest (built by .github/workflows/build-push.yml). Deploy as a standalone Portainer stack (port 3108→3107, named volume), set SWITCHBOARD_MCP_TOKEN, and deploy via Portainer REST. Health: curl -sf http://192.168.7.50:3108/healthz.
Test
node test/smoke.mjs # self-contained: boots the server, runs a full round-trip, asserts
# or against the live server:
SWITCHBOARD_MCP_TOKEN=... node test/receiver.js # in one terminal
SWITCHBOARD_MCP_TOKEN=... node test/sender.js receiver "hello" # in another
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.