mcp-agent-bridge

asume21/mcp-agent-bridge

3.1

If you are the rightful owner of mcp-agent-bridge and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to dayong@mcphub.com.

The MCP Agent Bridge is a server designed to facilitate communication between AI agents, specifically Cascade and Codex, using the Model Context Protocol (MCP).

Tools
8
Resources
0
Prompts
0

MCP Agent Bridge

An MCP server enabling AI agent-to-agent communication (Cascade ↔ Codex).

Features

  • Messaging - Send/receive messages between agents
  • Tasks - Create and assign tasks between agents
  • Shared Context - Maintain shared state across agents
  • Presence - Announce when online

Setup

pip install -r requirements.txt

Configure in Windsurf

Add to your MCP settings:

{
  "mcpServers": {
    "agent-bridge": {
      "command": "python",
      "args": ["d:/mcp-servers/agent-bridge/server.py"]
    }
  }
}

Tools

ToolDescription
send_messageSend message to another agent
get_messagesGet your messages
create_taskCreate task for another agent
get_tasksGet your tasks
update_taskUpdate task status
get_contextGet shared context
update_contextUpdate shared context
announce_presenceAnnounce you're online

Agent Names

  • cascade - Windsurf Chat AI
  • codex - Inline IDE AI
  • all - Broadcast to all

Example

// Cascade creates task for Codex
Tool: create_task
Args: {
  title: "Fix header alignment",
  description: "Button misaligned on mobile",
  assignedTo: "codex",
  createdBy: "cascade",
  priority: "high"
}