agentbus

agentbus

A local message bus for AI agent sessions that enables Claude Code sessions to communicate directly via channels, allowing message sending and peer discovery without network or copy-paste.

Category
Visit Server

README

agentbus

CI License: MIT

A local message bus for AI agent sessions. Start two Claude Code sessions and one can message the other — the message lands in the recipient's running session as a <channel> event. No copy-paste, no daemon, no network.

agentbus demo

agentbus is three layers (see SPEC.md):

  1. core — the bus: one SQLite db (~/.agentbus/bus.db) holding presence (peers) and every message with its delivery status (messages).
  2. send (MCP) — always on. One MCP server, agentbus, exposing the tools (send_message, broadcast, list_peers, whoami). Universal: every CLI speaks MCP. It never drains the inbox.
  3. delivery — pluggable, you pick. How messages land in a session. Enable the ones you want, individually:
    • claude-channel — real-time, mid-turn (file-watch + MCP channel push)
    • claude-hook — turn-boundary (Stop/SessionStart hook); works even in the agents panel, no channel flag
    • (future) gemini-a2a, … — independent, can run alongside the Claude ones
flowchart LR
    subgraph S1["session: frontend"]
        SEND1["agentbus (send)"]
        C1["claude"]
    end
    subgraph S2["session: backend"]
        C2["claude"]
        DLV2["delivery<br/>(channel / hook)"]
    end
    DB[("CORE — bus.db (SQLite)<br/>peers · messages")]

    C1 -- "send_message" --> SEND1
    SEND1 -- "INSERT (enqueue)" --> DB
    SEND1 -. "wake" .-> DLV2
    DB -- "pending rows" --> DLV2
    DLV2 -- "&lt;channel&gt; into session" --> C2
    DLV2 -. "mark delivered" .-> DB

    classDef db fill:#1f2430,stroke:#5b6273,color:#cdd3e0;
    class DB db;

Send (one always-on MCP server) is cleanly separate from receive (the delivery you choose), so turning a delivery on or off never affects your ability to send, and one delivery never swallows messages meant for another.

Why not just use A2A? A2A standardizes remote agent services (HTTP servers); it structurally can't push an unsolicited message into a live stdio session. agentbus does that last mile, and keeps its envelope A2A-shaped so a remote leg can be added later as just another delivery. (Details in SPEC.md §9.)

Requirements

  • Bun
  • Claude Code v2.1.80+ (channels are a research-preview feature)
  • Same machine, same user (the bus is a local SQLite file)

Install

git clone https://github.com/biswajitpatra/agentbus
cd agentbus
bash scripts/install.sh

This installs deps and registers the always-on agentbus send server, then lists the deliveries. Turn on the one(s) you want:

bun run agentbus enable claude-channel   # real-time
bun run agentbus enable claude-hook      # turn-boundary; works in the agents panel
bun run agentbus list                    # what's on
bun run agentbus disable claude-channel

There's intentionally no "enable all" — pick each delivery deliberately.

Uninstall

bun run uninstall            # remove the send server + every delivery + the bus

Restart any running session to fully drop the loaded server/hook. The cloned repo is left in place.

Use

Give each session a name with AGENTBUS_NAME. Launch depends on the delivery:

# claude-channel (real-time): load the channel
AGENTBUS_NAME=frontend claude --dangerously-load-development-channels server:agentbus-channel

# claude-hook (turn-boundary): no flag needed
AGENTBUS_NAME=backend claude

(bun run agentbus launch claude-channel frontend prints the exact command.)

Now ask frontend: "send_message to backend: what's the API contract?"backend receives it as a <channel source="agentbus" from="frontend"> event and replies with send_message.

You can also send straight from a shell (no MCP needed) — handy in scripts or a hook-only session:

AGENTBUS_NAME=frontend bun run agentbus send backend "what's the API contract?"
bun run agentbus peers

See examples/two-sessions.md for a full walkthrough.

Tools (from the agentbus send server)

Tool Args Description
send_message to, text Message one peer by name
broadcast text Message every other online peer
list_peers Sessions currently online
whoami This session's name

Incoming messages arrive (via your chosen delivery) as:

<channel source="agentbus" from="frontend" msg_id="42" ts="...">
what's the API contract?
</channel>

To reply, call send_message with to set to the from value.

How it works

  • Discovery — a participating session (one with AGENTBUS_NAME set) upserts a peers row and refreshes last_seen. A peer silent for 45s is reaped.
  • Sendsend_message does an INSERT into messages (delivered_at NULL) and fires a wake. Sending queues for any name (mailbox semantics), so you can message a peer that's idle or hasn't started yet.
  • Delivery — your enabled delivery drains undelivered rows and sets delivered_at only after it lands them in the session (at-least-once, never silently lost). claude-channel does it in real time on a file-watch wake (3s poll as a safety net); claude-hook does it at each turn boundary.
  • Multiple deliveries are safe — they share the bus, so a row is delivered by whichever drains it first; the others find it gone. Duplicates (rare races) are deduped on msg_id.
  • Auditbun run agentbus doctor shows live peers + pending/delivered counts.

claude-channel's wake is a per-peer file watched with fs.watch — SQLite can't notify other processes (update_hook is same-process only), so cross-session delivery needs an external nudge. Set AGENTBUS_TRIGGER=poll to use an interval instead.

Data & migrations

Schema is defined with Drizzle ORM in core/schema.ts; queries go through core/bus.ts. Versioned migrations live in drizzle/ and apply automatically on startup:

# edit core/schema.ts, then:
bun run db:generate     # writes a new drizzle/NNNN_*.sql migration — commit it

Inspect the bus directly (it's just SQLite):

sqlite3 ~/.agentbus/bus.db \
  "SELECT sender, recipient, body, delivered_at FROM messages ORDER BY id DESC LIMIT 10;"

Security

A delivered message is injected into the agent's context — a prompt-injection surface. agentbus is scoped to one machine, one user: the bus is a SQLite file under your home and peers are other local sessions you started. It listens on no network port. Don't point AGENTBUS_HOME at a shared or world-writable location, and be deliberate about combining it with --dangerously-skip-permissions. See SECURITY.md.

Project layout

core/schema.ts                  Drizzle tables (peers, messages)
core/bus.ts                     the bus: SQLite client + migrations + queries
core/ports.ts                   the standard: Envelope, Trigger, Delivery
core/paths.ts                   where the bus lives (~/.agentbus)
triggers/file-watch.ts          wake-file Trigger (default, event-driven)
triggers/poll.ts                interval Trigger (fallback)
adapters/send.ts                the always-on MCP send server ("agentbus")
adapters/send.json              its manifest
adapters/deliveries/            pluggable inbound deliveries (one manifest each)
  ├─ claude-channel.ts/.json    MCP channel server (file-watch + channel push)
  └─ claude-hook.ts/.json       Stop/SessionStart hook (additionalContext)
drizzle/                        generated, versioned SQL migrations
cli.ts                          manager (install/list/enable/disable/send/peers/doctor/uninstall)
scripts/install.sh              bootstrap: deps + register send + list deliveries
scripts/demo.ts                 self-driving demo (records the README cast)
examples/two-sessions.md        end-to-end walkthrough
test/                           integration tests over real stdio processes
SPEC.md                         the agentbus standard

Prior art

clauder pioneered cross-session messaging for Claude Code over a shared SQLite store, and session-bridge does it with a file mailbox. agentbus keeps the local-SQLite idea, separates an always-on MCP send layer from pluggable deliveries (channel, hook, …), and tracks delivery so messages are never silently lost.

License

MIT — see LICENSE.

Recommended Servers

playwright-mcp

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.

Official
Featured
TypeScript
Magic Component Platform (MCP)

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.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

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.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

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.

Official
Featured
TypeScript
Kagi MCP Server

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.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

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.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured