Command Palette

Search for a command to run...

UnylyUnyly
Browse all

Agenium Bridge

FreeNot checked

Bidirectional bridge between MCP (Model Context Protocol) and AGENIUM. Expose MCP servers as named agents. Use remote agents as MCP tools in Claude/Cursor.

GitHubEmbed

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

from github.com/Aganium/mcp-agenium-bridge

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-bridge

FAQ

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

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