ACP to MCP Adapter
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@ACP to MCP Adapteruse "echo" agent with the "Hello world" input"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Connect ACP Agents to MCP Applications Seamlessly
The ACP to MCP Adapter is a lightweight standalone server that acts as a bridge between two AI ecosystems: Agent Communication Protocol (ACP) for agent-to-agent communication and Model Context Protocol (MCP) for connecting AI models to external tools. It allows MCP applications (like Claude Desktop) to discover and interact with ACP agents as resources.
Capabilities & Tradeoffs
This adapter enables interoperability between ACP and MCP with specific benefits and tradeoffs:
Benefits
Makes ACP agents discoverable as MCP resources
Exposes ACP agent runs as MCP tools
Bridges two ecosystems with minimal configuration
Current Limitations
ACP agents become MCP tools instead of conversational peers
No streaming of incremental updates
No shared memory across servers
Basic content translation between formats without support for complex data structures
This adapter is best for situations where you need ACP agents in MCP environments and accept these compromises.
Related MCP server: A2A MCP Server
Requirements
Python 3.11 or higher
Installed Python packages:
acp-sdk,mcpAn ACP server running (Tip: Follow the ACP quickstart to start one easily)
An MCP client application (We use Claude Desktop in the quickstart)
Quickstart
1. Run the Adapter
Start the adapter and connect it to your ACP server:
uvx acp-mcp http://localhost:8000Replacehttp://localhost:8000 with your ACP server URL if different.
docker run -i --rm ghcr.io/i-am-bee/acp-mcp http://host.docker.internal:8000Tip: host.docker.internal allows Docker containers to reach services running on the host (adjust if needed for your setup).
2. Connect via Claude Desktop
To connect via Claude Desktop, follow these steps:
Open the Claude menu on your computer and navigate to Settings (note: this is separate from the in-app Claude account settings).
Navigate to Developer > Edit Config
The config file will be created here:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
Edit the file with the following:
{
"mcpServers": {
"acp-local": {
"command": "uvx",
"args": ["acp-mcp", "http://localhost:8000"]
}
}
}{
"mcpServers": {
"acp-docker": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/i-am-bee/acp-mcp",
"http://host.docker.internal:8000"
]
}
}
}3. Restart Claude Desktop and Invoke Your ACP Agent
After restarting, invoke your ACP agent with:
use "echo" agent with the "Good morning!" inputAccept the integration and observe the agent running.


ACP agents are also registered asMCP resources in Claude Desktop.
To attach them manually, click the Resources icon (two plugs connecting) in the sidebar, labeled "Attach from MCP", then select an agent like acp://agents/echo.
How It Works
The adapter connects to your ACP server.
It automatically discovers all registered ACP agents.
Each ACP agent is registered in MCP as a resource using the URI:
acp://agents/{agent_name}The adapter provides a new MCP tool called
run_agent, letting MCP apps easily invoke ACP agents.
Supported Transports
Currently supports Stdio transport
Developed by contributors to the BeeAI project, this initiative is part of the Linux Foundation AI & Data program. Its development follows open, collaborative, and community-driven practices.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- FlicenseBqualityDmaintenanceA Model Context Protocol server that enables Claude users to access specialized OpenAI agents (web search, file search, computer actions) and a multi-agent orchestrator through the MCP protocol.Last updated410
- AlicenseAqualityFmaintenanceA bridge server that enables MCP-compatible AI assistants like Claude to seamlessly discover, communicate with, and manage A2A protocol agents.Last updated7148Apache 2.0
- AlicenseBqualityFmaintenanceA bridge server that connects Agent Communication Protocol (ACP) agents with Model Context Protocol (MCP) clients, enabling seamless integration between ACP-based AI agents and MCP-compatible tools like Claude Desktop.Last updated1624MIT
- AlicenseAqualityDmaintenanceBridges Model Context Protocol (MCP) with Google's Agent-to-Agent (A2A) protocol, enabling MCP-compatible AI assistants like Claude to discover, register, communicate with, and manage tasks on A2A agents through a unified interface.Last updated67Apache 2.0
Related MCP Connectors
Agent-to-agent referral network. Discover, recommend, and refer users between AI agents via MCP.
Real-time Amazon, WIPO & PACER data for AI agents — 19 tools via the MCP protocol.
OCR, transcription, file extraction, and image generation for AI agents via MCP.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/i-am-bee/acp-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server