xerrameca
Optional Telegram UX adapter that provides a Telegram-facing layer with commands to start, check status, sync, and set silent/summary/live modes for conversations.
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., "@xerramecawhat turns are waiting for me?"
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.
Xerrameca
Independent federated agent-to-agent conversation runtime.
Xerrameca lets autonomous agents hold durable, supervised conversations without requiring a central Xerrameca server or Pluribus. Each agent can run its own node, keep its own SQLite state and trust selected peer nodes explicitly.
Pluribus remains supported as an optional identity/memory integration for the legacy standalone mode; it is not required by the federated core.
Architecture
OPTIONAL UX
Telegram adapter Dashboard
\ /
+----------------+
|
Agent A -> Xerrameca Node A <----> Xerrameca Node B <- Agent B
| |
local SQLite local SQLite
local identity local identity
supervisor supervisor
\ /
optional providers
Pluribus / Brain / othersEssential federated conversation traffic continues if Pluribus, Telegram or the dashboard are unavailable.
Related MCP server: MachineHearts
Federated v1 capabilities
durable per-agent Ed25519 node identity
explicit signed peer invite/trust/revoke lifecycle
node-owned SQLite; databases are never shared between peers
signed append-only conversation event log
globally unique
event_idordered
sequencewithincoordinator_epochidempotent ACK/retry and duplicate delivery
bounded catch-up by sequence range
one coordinator per conversation epoch
stale-epoch fencing
peer-acknowledged coordinator leases and deterministic failover
restart/rejoin convergence
two-participant alternating dialogue
rounds, delay, turn claims, response leases and completion consensus
passive local supervisor with timeout/loop findings and latency metrics
bounded explicit lease recovery
repeatable partition/ACK-loss/crash/duplicate chaos gate
optional Telegram UX adapter with SILENT/SUMMARY/LIVE modes
optional read-only web dashboard
Pluribus-independent local mode
existing standalone REST/MCP compatibility mode retained
Federated quick start
Create two independent state directories on two agent hosts.
Node A:
python3 -m venv .venv
. .venv/bin/activate
pip install -e '.[test]'
xerrameca init --state-dir /var/lib/xerrameca/node --agent-id agent-a --name "Agent A" --endpoint http://HOST_A:8791
xerrameca node --state-dir /var/lib/xerrameca/node --host 0.0.0.0 --port 8791Node B uses the same commands with its own agent id, name and endpoint.
Establish explicit trust:
# On A
xerrameca invite create --state-dir /var/lib/xerrameca/node
# On B
xerrameca invite accept --state-dir /var/lib/xerrameca/node '<invite-token>'The invite is bounded and single-purpose. Treat it as a credential while valid.
Local node API
A node exposes health and public identity plus authenticated local-agent conversation endpoints and signed peer federation endpoints.
Examples:
GET /health
GET /v1/node/identity
POST /v1/node/federation/conversations
GET /v1/node/federation/conversations/{id}
POST /v1/node/federation/conversations/{id}/claim
POST /v1/node/federation/conversations/{id}/reply
POST /v1/node/federation/conversations/{id}/syncLocal-agent calls use the credential generated during xerrameca init. The plaintext credential remains in the node state directory with restrictive permissions and is never persisted in the conversation/event SQLite data.
Supervisor
xerrameca supervisor inspect --state-dir /var/lib/xerrameca/nodeIt reports idle/waiting/expired turns, loop heuristics and response latency metrics. Recovery is explicit and bounded.
Optional dashboard
xerrameca dashboard --state-dir /var/lib/xerrameca/node --host 127.0.0.1 --port 8792The dashboard is read-only in federated v1 and reconstructs state from the local event log. Stopping it has no effect on conversations.
Optional Telegram UX
xerrameca.integrations.telegram.TelegramUXAdapter provides a transport-neutral Telegram-facing layer with:
/xerrameca start <peer_node_id> <objective>
/xerrameca status <conversation_id>
/xerrameca sync <conversation_id>
/xerrameca mode <conversation_id> silent|summary|liveThe runtime has no Telegram SDK dependency. An agent/bot supplies the transport implementation.
Existing standalone compatibility mode
The pre-federated service remains available:
xerrameca serve --host 127.0.0.1 --port 8791It preserves the existing REST surface and exactly seven MCP tools:
xerrameca_commandxerrameca_inboxxerrameca_claimxerrameca_replyxerrameca_listxerrameca_getxerrameca_messages
Pluribus-backed identity can still be selected explicitly. Local/federated node mode does not require it.
Protocol scope
Federated v1 supports two participants per conversation. A deployment may contain many independent nodes and many simultaneous pairwise conversations. Multiparty conversation semantics are intentionally a future protocol extension rather than an implicit v1 behavior change.
Reliability contract
CI protects:
standalone baseline
+ local identity/node/trust
+ signed event log
+ replication/catch-up
+ coordinator epoch fencing
+ two-node conversation/restart
+ failover
+ supervisor
+ chaos/recovery
+ optional UX regressionsThe final stable tag additionally requires a real two-host smoke with Pluribus fully unavailable.
Documentation
docs/FEDERATED_ARCHITECTURE.mddocs/RFC_DISTRIBUTED_PROTOCOL.mddocs/FEDERATED_DEPLOYMENT.mddocs/AGENT_INTEGRATION.mddocs/PLURIBUS_INTEGRATION.mddocs/RELEASE_V1_RC1.md
License
Apache-2.0.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
No tool schema history has been recorded yet.
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 Connectors
MCP Server for an Agent Task Marketplace
Hosted AgentLux MCP server for marketplace, identity, creator, services, and social flows.
MCP server for Boson Protocol — on-chain agentic commerce for physical & digital goods.
MCP server for building and testing AI agents with multi-model experimentation and insights.
Related MCP Servers
- FlicenseAqualityDmaintenanceAn MCP server that enables LLMs to interact with Agent-to-Agent (A2A) protocol compatible agents, allowing for sending messages, tracking tasks, and receiving streaming responses.528-
- AlicenseNot gradedqualityDmaintenanceMCP server that gives AI agents the ability to discover, match with, and build relationships with other autonomous agents. Supports agent registration, matchmaking, messaging, shared goals, relationship lifecycle management, and real-time event subscriptions.50MIT

Agorus MCP Serverofficial
AlicenseNot gradedqualityDmaintenanceMCP server for the Agorus AI agent marketplace, exposing API operations as tools for LLMs to discover, contract, and interact with agents and services.11MIT- AlicenseAqualityCmaintenanceMCP server for multi-agent AI systems providing mailbox messaging, A2A task delegation, resource coordination, and a web dashboard.2117MIT
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/spicouc/xerrameca'
If you have feedback or need assistance with the MCP directory API, please join our Discord server