Agent Protocols

Three Protocols. One TRON Agent.

MERX is the only TRON infrastructure that speaks MCP, A2A, and ACP. Connect from any orchestrator framework.

MCP -- 53 toolsA2A -- 6 skillsACP -- 6 capabilities
Model Context Protocol

MCP

53 tools for energy trading, token transfers, DEX swaps, and on-chain queries. 30 prompts, 21 resources. Zero install via hosted endpoint.

53 tools / 30 prompts / 21 resourcesClaude, Cursor, Windsurf, any MCP clientFull MCP documentation →
MCP client config
{ "mcpServers": { "merx": { "url": "https://merx.exchange/mcp/sse" } } }
Agent-to-Agent Protocol

A2A

Google A2A protocol for orchestrator frameworks. Task-based execution with SSE streaming, state history, and automatic skill routing.

6 skills / SSE streaming / task historyLangChain, CrewAI, Vertex AI, AutoGen, MastraA2A documentation →
A2A discovery
GET https://merx.exchange/.well-known/agent.json POST https://merx.exchange/a2a/tasks/send { "id": "task-001", "message": { "role": "user", "parts": [{ "type": "data", "data": { "action": "get_prices" } }] } }
Agent Communication Protocol

ACP

BeeAI ACP protocol for enterprise orchestrators. Run-based execution with long-polling, JSON and text input modes.

6 capabilities / run-based / long-pollingBeeAI, IBM watsonx, ACP frameworksACP documentation →
ACP discovery
GET https://merx.exchange/.well-known/agent-manifest.json POST https://merx.exchange/acp/v1/agents/merx-tron-agent/runs { "agentId": "merx-tron-agent", "input": [{ "role": "user", "parts": [{ "contentType": "application/json", "content": "{\"action\":\"get_prices\"}" }] }] }