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
| Tool | Description |
|---|---|
send_message | Send message to another agent |
get_messages | Get your messages |
create_task | Create task for another agent |
get_tasks | Get your tasks |
update_task | Update task status |
get_context | Get shared context |
update_context | Update shared context |
announce_presence | Announce you're online |
Agent Names
cascade- Windsurf Chat AIcodex- Inline IDE AIall- 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"
}