Skip to main content
Glama
atristannewman

AgentRadio MCP

AgentRadio MCP (Python)

A Python MCP server that gives Cursor agents the AgentRadio primitives — create_thread, send_message, wait_for_mention — so agents in different workspaces can work on the same problem over a shared radio channel.

This is a Python port of the communication layer from Coral-Protocol/AgentRadio (paper). It does not run the Java coral-server.jar or the Harbor experiment harness. It implements the same three primitives, plus join/list/read, on a shared SQLite store that every Cursor workspace can see.

Why this exists

AgentRadio's insight: agents should keep working while they listen. The original paper used a background wait_for_mention process. Cursor does not expose that watcher the same way, so this server:

  1. Exposes the primitives as MCP tools Cursor agents can call.

  2. Shares state across workspaces (one SQLite file, or one HTTP hub).

  3. Tells each agent (via MCP instructions) to poll wait_for_mention between work steps.

Two Cursor windows — say frontend and backend — join the same channel, open a planning thread, and pass findings while they keep coding.

Related MCP server: swarm-mcp

Install

cd agentradio-mcp
python3 -m pip install -e .

Needs Python 3.10+ and mcp 1.21–1.x.

Two ways to share a channel

A. Same machine, multiple workspaces (simplest)

Each workspace runs its own stdio MCP process. They all open ~/.agentradio/radio.db, so they see the same threads.

Put a different AGENTRADIO_AGENT_ID in each workspace's .cursor/mcp.json:

{
  "mcpServers": {
    "agentradio": {
      "command": "python3",
      "args": ["-m", "agentradio_mcp"],
      "env": {
        "AGENTRADIO_AGENT_ID": "frontend",
        "AGENTRADIO_CHANNEL": "my-app",
        "AGENTRADIO_WORKSPACE": "web"
      }
    }
  }
}

In the other workspace, use "backend" / "api". Keep AGENTRADIO_CHANNEL the same.

Copy cursor-rules/agentradio.mdc into each workspace as .cursor/rules/agentradio.mdc so agents actually use the radio.

B. One HTTP hub (best when many workspaces share one config)

Start a single process:

python3 -m agentradio_mcp --http --host 127.0.0.1 --port 8765

or examples/start-hub.sh.

Then every workspace (or your user-level ~/.cursor/mcp.json) can use the same config:

{
  "mcpServers": {
    "agentradio": {
      "url": "http://127.0.0.1:8765/mcp"
    }
  }
}

Each agent calls join_radio with its own agent_id. That is how one shared MCP URL still has distinct identities.

Cursor Settings → MCP → add the server, then reload MCP.

Tools

Tool

What it does

join_radio(agent_id, workspace?)

Register this workspace on the channel. Call this first if AGENTRADIO_AGENT_ID is not set.

list_agents

Who is on the channel (and who is stale).

create_thread(name, participants?)

Open a named conversation. Empty participants = everyone currently joined.

send_message(thread_id, content, mentions?)

Append a message and return immediately. @handles in the text count as mentions. Mentioning someone adds them to the thread.

wait_for_mention(timeout_ms=15000)

Block until you are mentioned, any new visible message arrives, or timeout. Always returns a full state dump.

read_state

Snapshot of agents, threads, and messages you can see.

leave_radio

Mark this agent disconnected. History stays.

Resources: agentradio://state, agentradio://protocol.

How agents should work

  1. join_radio as frontend / backend / agent-1 / …

  2. list_agents — wait for peers or start a thread they will join.

  3. Keep working. Between steps, wait_for_mention (8–15s) or timeout_ms=0.

  4. Share as you go. Prefix FYI: (no reply), URGENT: (handle now).

  5. After a long context, read_state and copy evidence from the real messages.

Optional five-phase protocol (from the paper) is in the MCP instructions: explore → divide until APPROVE → execute with a worklog → review → assembler submits only after unanimous APPROVE.

CLI

python3 -m agentradio_mcp                  # stdio (what Cursor launches)
python3 -m agentradio_mcp --http           # hub at http://127.0.0.1:8765/mcp
python3 -m agentradio_mcp --dump-state frontend

Env / flag

Default

Meaning

AGENTRADIO_DB_PATH / --db

~/.agentradio/radio.db

Shared SQLite file

AGENTRADIO_CHANNEL / --channel

default

Room name (isolate teams)

AGENTRADIO_AGENT_ID

unset

Auto-join this id on first tool call

AGENTRADIO_WORKSPACE

cwd basename

Label shown in list_agents

AGENTRADIO_HOST / --host

127.0.0.1

HTTP bind

AGENTRADIO_PORT / --port

8765

HTTP port

Tests

python3 -m pip install -e ".[dev]"
python3 -m pytest

What this is not

  • Not the SWE-Atlas / Harbor four-agent experiment runner.

  • Not Coral Code (the product).

  • Not a way for isolated cloud VMs to talk unless they can reach the same HTTP hub or SQLite path. For cloud agents, run the hub on a host they can all reach and point each agent's MCP url at it.

License

Apache-2.0. See LICENSE and NOTICE.

Available Tools

7 tools
create_threadC

Open a named conversation. Empty participants includes everyone currently joined.

ParametersJSON Schema
NameRequiredDescriptionDefault
nameYes
participantsNo

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden of behavioral disclosure. It adds one useful detail (empty participants means everyone currently joined), but it does not state whether 'open' creates persistent state, whether it can be called repeatedly, what side effects occur, or what response to expect. This is thin for a creation/mutation tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two short sentences with no filler, and the key default-participants behavior is placed right after the core action. Slightly awkward phrasing ('Empty participants') costs a bit of polish but the structure is efficient and front-loaded.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with no output schema and no annotations, the description is under-specified: it does not say what the call returns, whether the caller is joined to the thread, how duplicate or existing names are handled, or whether this is a persistent creation. The participants edge case is handled, but the core semantics of 'open' remain vague.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must compensate. It does meaningfully explain the participants parameter's default behavior, which the schema only represents as nullable with default null. However, it adds nothing about the required 'name' parameter beyond what its title already implies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a clear action ('Open') and resource ('a named conversation'), reinforced by the tool name create_thread. It is distinguishable from siblings like join_radio or send_message, though it does not explicitly name another tool or contrast its scope.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

There is no guidance on when to use this tool versus joining an existing conversation or sending a message. The only stated rule, about empty participants, is an input-behavior detail rather than usage guidance. No exclusions or alternatives are mentioned.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

join_radioA

Register this Cursor workspace on the shared AgentRadio channel.

Use a stable agent_id per workspace (frontend, backend, mobile, agent-1). Other workspaces see you via list_agents after this call.

ParametersJSON Schema
NameRequiredDescriptionDefault
agent_idYes
workspaceNo

TDQS

A3.7/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the burden of explaining effects; it does state that registration makes the workspace visible to other participants, which is useful. It does not disclose whether re-joining is idempotent, whether the workspace parameter affects identity, or what happens on duplicate calls. This is acceptable but partial.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is three short sentences with no filler, and the core action is front-loaded. The example values for agent_id are compact and immediately useful.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple two-parameter join tool, it covers the main action and outcome, and no output schema exists that would document return values. The main gap is the ambiguous workspace parameter and the lack of behavior around duplicate/repeated registration. This makes it viable but not complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema descriptions cover 0% of the parameters, so the description must compensate. It does explain agent_id semantics and gives concrete example values, but the optional workspace parameter is not described at all. This partial coverage justifies a middle score.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('Register') and a concrete resource ('this Cursor workspace' on the shared AgentRadio channel), so an agent immediately knows the tool's function. It also clarifies the intended effect by noting visibility via list_agents, which helps differentiate it from observation and messaging siblings.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It implies when to use the tool — when a workspace needs to appear on the channel — and gives practical guidance on choosing a stable agent_id. However, it never explicitly states when not to use it, what happens if already joined, or that leave_radio should be used to reverse it. The usage context is clear but mostly implicit.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

leave_radioA

Mark this agent disconnected. Messages and threads stay on the channel.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full behavioral burden. It usefully discloses the non-destructive side effect that messages and threads are retained, which adds beyond the tool name. However, it does not mention reversibility, permissions, idempotency, or observable effects for other agents, leaving some behavioral ambiguity.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two short sentences with no filler. The primary action is front-loaded, and the one clarifying effect sentence is directly relevant and necessary for correct use.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a zero-parameter, no-output-schema action, the description covers the core behavior and the most important side effect. It is adequately complete for an agent to invoke it correctly, though a note on reconnection or expected outcome would make it fully comprehensive.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool takes zero parameters, so the baseline is 4. The description sensibly does not attempt to describe parameters that do not exist, and no parameter documentation is required.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('Mark this agent disconnected') with a specific verb and resource, and it distinguishes itself from siblings like join_radio by indicating a departure state. The additional clause about messages and threads remaining on the channel further clarifies the tool's scope.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies the usage context: use this when the agent should leave a radio channel. However, there is no explicit when-to-use or when-not-to-use guidance, and while sibling join_radio suggests the inverse, the description does not formally direct the agent to alternatives or provide exclusions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_agentsA

List every agent that has joined this channel, including offline ones.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.2/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the burden of telling the agent what this operation does. It correctly indicates a read-only listing behavior and notes that offline agents are included. However, it does not disclose response format, auth requirements, or whether the list reflects a live snapshot, which could matter to an agent.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

A single, front-loaded sentence that states the action, the target, and the key inclusion detail. Every word earns its place; there is no filler or redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a zero-parameter, low-complexity tool, this description is largely sufficient for an agent to understand what it will get. It could be more complete by hinting at the output shape or any permissions needed, but the core behavior is fully covered.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has zero parameters and the schema is empty, so there are no parameter semantics to explain. Per calibration, zero-parameter tools get a baseline of 4. The description adds channel context that helps define the implicit scope of the operation.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb and resource: 'List every agent that has joined this channel.' It also adds a meaningful scope qualifier, 'including offline ones,' which clarifies the returned set. This clearly distinguishes it from sibling tools like send_message or create_thread, which focus on communication actions.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description clearly conveys that the tool is for enumerating channel members, and the 'including offline ones' detail sets expectations about the result set. It does not explicitly name alternatives or exclusion criteria, but no sibling tool does the same job, so the context is reasonably clear.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

read_stateA

Full snapshot of agents, threads, and messages this agent can see.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A3.5/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description must carry the behavioral burden alone. 'Full snapshot' implies a read-only, comprehensive operation, and 'this agent can see' communicates permission/visibility scoping. However, it does not disclose response size, pagination, consistency, or failure behavior; for a simple state read this is acceptable but not thorough.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

A single compact sentence that front-loads the main idea ('full snapshot') and then specifies the contained entities and scope. Every word contributes meaning, with no filler or repetition.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given zero parameters, no annotations, and no output schema, the description names the three entity types returned and the visibility boundary, which is sufficient for a straightforward state read. It could add details about the exact response structure, but the tool's simplicity makes that omission minor.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool takes zero parameters, so there are no parameter semantics to clarify. The schema is vacuously fully covered, and the baseline of 4 for parameterless tools applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly identifies the resource set (agents, threads, messages) and the visibility scope ('this agent can see'), which separates it from sibling tools like list_agents and mutation-oriented actions. It lacks an explicit verb such as 'returns' or 'reads', but 'full snapshot' strongly implies retrieval.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

There is no guidance on when to use read_state instead of list_agents, send_message, or other siblings. The description does not state when this is the right call, nor does it mention any exclusions or alternatives.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

send_messageA

Append a message and return immediately. Mentions wake those agents' wait_for_mention.

ParametersJSON Schema
NameRequiredDescriptionDefault
contentYes
mentionsNo
thread_idYes

TDQS

A3.5/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are present, so the description carries the burden. It discloses two important behaviors: the call returns immediately, and mentions wake agents blocked in wait_for_mention. However, it does not mention return value, failure behavior, or whether any authorization or preconditions apply, leaving gaps for a mutation tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two short sentences with no filler. The primary action is front-loaded, and the second sentence adds a distinct side effect. Every word earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple tool with no output schema and no annotations, the description is close but incomplete. It explains the core behavior and side effect, but agents are left guessing about the return value and whether the thread must already exist before sending. The sibling context helps, but the description could be more self-sufficient.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must compensate. It adds meaningful semantics for the 'mentions' parameter by linking it to wait_for_mention, but it does not clarify the exact role of thread_id or content beyond what their names imply. This is partial compensation, not full.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific action ('Append a message') and a key behavioral trait ('return immediately'), making the core purpose clear. It also distinguishes the tool from siblings like wait_for_mention by explaining the mention wake-up effect, though it does not explicitly say the message is appended to the given thread.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Usage is implied: if an agent wants to send or append a message, this is the tool. However, there is no explicit guidance about when not to use it or which sibling alternatives (e.g., create_thread vs send_message) apply in different situations.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

wait_for_mentionA

Wait until you are mentioned, a new visible message arrives, or timeout_ms elapses.

The payload always includes the full channel state. After it returns, keep working and call again between steps (Cursor has no background watcher).

ParametersJSON Schema
NameRequiredDescriptionDefault
timeout_msNo
wake_on_any_new_messageNo

TDQS

A4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full behavioral burden. It discloses that the tool blocks, includes full channel state in the payload, and requires repeated calls with no background watcher. This is valuable context beyond the raw schema, though it does not define 'visible' or what happens on timeout exactly.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is compact and front-loaded, with the core wait condition in the first sentence and practical usage context in the second. Every sentence adds value without unnecessary detail.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description covers the main behavior, return payload, and repeated-call usage pattern. However, one of the two parameters is left unexplained, and the lack of an output schema or return structure details leaves some ambiguity about the exact payload shape.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must compensate. It mentions timeout_ms in the wait condition, but wake_on_any_new_message is never explained. The phrase 'a new visible message arrives' hints at the wake flag but does not clarify how the parameter changes behavior.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states a specific waiting behavior: block until mentioned, a new visible message arrives, or timeout_ms elapses. This distinguishes it from siblings like send_message and read_state, which either send or read state rather than wait.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives practical usage guidance: after it returns, keep working and call again between steps, and notes there is no background watcher. However, it does not explicitly compare against read_state or explain when polling would be preferable.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 7 tool updatesv0.1.0
    • First observedcreate_thread
    • First observedjoin_radio
    • First observedleave_radio
    • First observedlist_agents
    • First observedread_state
    • First observedsend_message
    • First observedwait_for_mention

TDQS

A3.7/5.0

Scored across 7 tools

Disambiguation4/5

Each tool targets a distinct action (join, leave, list, create, send, wait, read_state). Minor overlap exists between read_state and wait_for_mention since both expose channel state, but one is a blocking wait and the other is an immediate snapshot. create_thread and send_message could be confused regarding whether creating a thread implies an initial message.

Naming Consistency5/5

All tool names follow a consistent verb_noun snake_case pattern: join_radio, leave_radio, list_agents, create_thread, send_message, wait_for_mention, read_state. No mixed conventions or vague verbs.

Tool Count5/5

Seven tools is well-scoped for an agent radio channel: lifecycle (join/leave), discovery (list_agents), conversation (create_thread/send_message), reactive waiting (wait_for_mention), and state inspection (read_state). Each tool earns its place without redundancy.

Completeness4/5

The core channel workflow is covered: join, leave, list participants, create threads, send messages, wait for mentions, and read state. Minor gaps include no explicit way to leave a thread or retrieve only a specific thread's messages, but read_state provides full visibility so agents can work around these.

Maintenance

ActivityMaintained
ResponsivenessNo issues

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    F
    maintenance
    MCP server that lets multiple coding-agent sessions on the same machine discover each other and collaborate through a shared SQLite database.
    20 npm
    1
    MIT
  • A
    license
    Not graded
    quality
    D
    maintenance
    A local MCP server that provides shared, real-time context across multiple AI agents via WebSocket and MCP resource notifications, enabling collaborative workspaces, memory, tasks, and messaging.
    8 npm
    1
    MIT
  • A
    license
    A
    quality
    D
    maintenance
    MCP server for inter-agent communication. Gives multiple Claude Code sessions a shared message board, agent registry, and orchestration layer — backed by a cloud relay so agents can coordinate across machines, repos, and teams.
    8
    40 npm
    MIT