Agenium Bridge
FreeNot checkedBidirectional bridge between MCP (Model Context Protocol) and AGENIUM. Expose MCP servers as named agents. Use remote agents as MCP tools in Claude/Cursor.
About
Bidirectional bridge between MCP (Model Context Protocol) and AGENIUM. Expose MCP servers as named agents. Use remote agents as MCP tools in Claude/Cursor.
README
Bidirectional bridge between MCP (Model Context Protocol) servers/tools and agent:// protocol agents.
Features
- MCP → agent:// — Expose MCP servers as agent:// endpoints so other agents can call MCP tools
- agent:// → MCP — Expose agent:// agents as MCP tools so LLMs can use agents via MCP
Installation
pip install -e .
Usage
Expose MCP tools as an agent
from mcp_agenium import MCPToAgentBridge
bridge = MCPToAgentBridge(
mcp_server="npx @modelcontextprotocol/server-filesystem /tmp",
agent_name="filesystem",
agent_domain="tools",
)
await bridge.start(port=8080)
# Now accessible as agent://filesystem.tools
Use agents as MCP tools
from mcp_agenium import AgentToMCPBridge
bridge = AgentToMCPBridge(
agents=["agent://search.agenium", "agent://weather.agenium"]
)
mcp_tools = await bridge.get_tools() # Returns MCP-compatible tool definitions
result = await bridge.call_tool("search_agenium_search", {"query": "hello"})
Bridge Server (MCP JSON-RPC)
from mcp_agenium import AgentToMCPBridge, BridgeServer
bridge = AgentToMCPBridge(agents=["agent://search.agenium"])
server = BridgeServer(bridge)
await server.run_stdio() # Speaks MCP protocol on stdin/stdout
Development
pip install -e ".[dev]"
pytest
Domain Registration
Supports optional domain registration on the Agenium DNS system using a marketplace API key (dom_<64 hex>). Pass api_key parameter to auto-register your agent on startup. Get your API key from the Telegram Domain Marketplace.
License
MIT
Installing Agenium Bridge
This server has no published package — it is built from source. Open the repository and follow its README.
▸ github.com/Aganium/mcp-agenium-bridgeFAQ
Is Agenium Bridge MCP free?
Yes, Agenium Bridge MCP is free — one-click install via Unyly at no cost.
Does Agenium Bridge need an API key?
No, Agenium Bridge runs without API keys or environment variables.
Is Agenium Bridge hosted or self-hosted?
Self-hosted: the server runs locally on your machine via the install command above.
How do I install Agenium Bridge in Claude Desktop, Claude Code or Cursor?
Open Agenium Bridge on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
Fetch
Web content fetching and conversion for efficient LLM usage.
AWS KB Retrieval
Retrieval from AWS Knowledge Base using Bedrock Agent Runtime.
by modelcontextprotocolSpring AI MCP Server
Provides auto-configuration for setting up an MCP server in Spring Boot applications.
llm-analysis-assistant
A very streamlined mcp client that supports calling and monitoring stdio/sse/streamableHttp, and can also view request responses through the /logs page. It also
by xuzexin-hzMCP-Agent
A simple, composable framework to build agents using Model Context Protocol by [LastMile AI](https://www.lastmileai.dev)
by lastmile-aiSpring AI MCP Client
Provides auto-configuration for MCP client functionality in Spring Boot applications.
mcp.natoma.ai
A Hosted MCP Platform to discover, install, manage and deploy MCP servers by [Natoma Labs](https://www.natoma.ai)
MCPHub
Website to list high quality MCP servers and reviews by real users. Also provide online chatbot for popular LLM models with MCP server support.
MCP Servers Rating and User Reviews
Website to rate MCP servers, write authentic user reviews, and [search engine for agent & mcp](http://www.deepnlp.org/search/agent)
mkinf
An Open Source registry of hosted MCP Servers to accelerate AI agent workflows.
Compare Agenium Bridge with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All ai MCPs
