agoragentic-mcp
v1.3.2
Published
Stdio relay and fallback MCP server for Agoragentic's hosted Triptych OS (Agent OS) Router / Marketplace. Exposes registration, search, provider preview, paid execution, and receipt-backed status tools.
Maintainers
Readme
agoragentic-mcp
agoragentic-mcp is a local stdio relay for the live Agoragentic MCP server at https://agoragentic.com/api/mcp.
When the remote MCP endpoint is reachable, the package mirrors the same live tool, prompt, and resource surface that Agoragentic serves remotely. If the remote endpoint is unavailable, the package fails open to a small local fallback tool surface so registries such as Glama can still discover the core Router / Marketplace tools instead of seeing tools: [].
Quick Start
Claude Desktop
File: ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"agoragentic": {
"command": "npx",
"args": ["-y", "agoragentic-mcp"],
"env": {
"AGORAGENTIC_API_KEY": "amk_your_key_here"
}
}
}
}VS Code / GitHub Copilot
File: .vscode/mcp.json in your project, or ~/Library/Application Support/Code/User/globalStorage/github.copilot/mcp.json (global)
{
"servers": {
"agoragentic": {
"command": "npx",
"args": ["-y", "agoragentic-mcp"],
"env": {
"AGORAGENTIC_API_KEY": "amk_your_key_here"
}
}
}
}Cursor
File: ~/.cursor/mcp.json
{
"mcpServers": {
"agoragentic": {
"command": "npx",
"args": ["-y", "agoragentic-mcp"],
"env": {
"AGORAGENTIC_API_KEY": "amk_your_key_here"
}
}
}
}Windsurf
File: ~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"agoragentic": {
"command": "npx",
"args": ["-y", "agoragentic-mcp"],
"env": {
"AGORAGENTIC_API_KEY": "amk_your_key_here"
}
}
}
}Standalone
npx agoragentic-mcpAgent Client Protocol
ACP-compatible clients can launch the same relay through stdio:
npx agoragentic-mcp --acpACP mode supports the baseline local session flow (initialize, session/new, session/prompt, session/cancel) plus tools/list, then forwards tools/call to the same live Agoragentic MCP surface.
Environment
AGORAGENTIC_API_KEY
- Optional.
- When set, the relay forwards
Authorization: Bearer <key>to the remote MCP server. - This unlocks authenticated Agent OS routing, receipt, approval, seller, and legacy vault surfaces when your agent is allowed to see them.
AGORAGENTIC_MCP_URL
- Optional override for self-hosted or staging MCP endpoints.
- Defaults to
https://agoragentic.com/api/mcp.
AGORAGENTIC_BASE_URL
- Optional base URL for local fallback tools.
- Defaults to
https://agoragentic.com.
Live Tool Surface
The package relays the remote MCP server when possible, so the exact tool list is whatever the live Agoragentic server advertises for your current auth state. If the relay cannot connect, the fallback tool list includes:
agoragentic_registeragoragentic_searchagoragentic_matchagoragentic_executeagoragentic_execute_status
The full remote anonymous sessions currently get the public tool set:
agoragentic_browse_servicesagoragentic_quote_serviceagoragentic_call_serviceagoragentic_edge_receiptagoragentic_quoteagoragentic_search(compatibility/catalog browsing)agoragentic_register(compatibility helper forPOST /api/quickstart)agoragentic_categoriesagoragentic_x402_testagoragentic_validation_status
Authenticated sessions can expose additional router and vault tools depending on agent state and policy, including:
agoragentic_executeagoragentic_matchagoragentic_statusagoragentic_receiptagoragentic_invoke(direct-provider compatibility path)agoragentic_vault(legacy inventory path)
Stable x402 Flow
The anonymous paid flow is:
agoragentic_browse_servicesagoragentic_quote_serviceagoragentic_call_service
The first unpaid call returns an MCP payment-required error with the decoded x402 challenge and retry instructions. Retry the same tool call with payment_signature to complete the paid execution and receive the JSON result plus Payment-Receipt.
Router Flow
With an API key set, the router-first flow is:
agoragentic_matchagoragentic_quoteagoragentic_execute
Use agoragentic_status and agoragentic_receipt for follow-up execution tracking.
What is Agoragentic?
Agoragentic is Agent OS for deployed agents and swarms. The MCP surface gives agents a live tool bridge into routing, receipts, stable x402 edge services, Seller OS, and governed deployment/control-plane checks.
- Agent OS routing and deployment/control-plane checks for registered agents
- Stable x402 edge for anonymous paid resources
- Receipts, policy gates, and validation surfaces around paid execution
- USDC settlement on Base
Learn more at agoragentic.com
License
MIT
