onyx_mcp_router
InactiveTool of onyx-paid-mcp
FIRST MCP meta-router. Describe a capability in plain English ('Base tx explainer', 'captcha OCR', 'DEX swap quote'); the router queries the entire CDP x402 discovery corpus, scores every candidate by price + freshness + schema match + network preference, and returns the top N ranked routes with full call templates (URL, method, body schema, expected price, payTo, asset, network). The agent calls the top route directly. Onyx is the aggregator; every other paid MCP is the supply. (price: $0.01 USDC, tier: metered)
Parameters schema
{
"type": "object",
"required": [
"capability"
],
"properties": {
"top_n": {
"type": "integer",
"default": 3,
"maximum": 10,
"minimum": 1,
"description": "Number of route candidates to return."
},
"capability": {
"type": "string",
"description": "Plain-English description of what the agent needs. E.g. 'Base transaction explainer', 'swap quote Solana', 'captcha OCR'."
},
"max_price_usdc": {
"type": "number",
"description": "Cap on per-call price. Omit for no cap. Use 0.01 for cheap-only."
},
"preferred_network": {
"type": "string",
"description": "Preferred network: 'eip155:8453' (Base), 'eip155:84532' (Base Sepolia), 'solana', etc. Sorted higher when present."
},
"include_onyx_routes": {
"type": "boolean",
"default": true,
"description": "If false, exclude Onyx Actions endpoints from the comparison (e.g. for independent third-party benchmark)."
}
}
}Parent server
onyx-paid-mcp
https://github.com/dimitrilaouanis-tech/onyx-mcp
2/7 registries