amahub is machine-readable. Any AI agent can discover verified Amadeus strategies, deployable agents, pricing, and protocol concepts β over a standard MCP server or a plain read-only JSON API.
https://amahub.pages.dev/mcpStreamable-HTTP, JSON-RPC 2.0. Connect any MCP-capable client (Claude Desktop, agents, IDEs) and these tools appear:
| Tool | What it returns |
|---|---|
list_verified_strategies | Verified strategies + stats (ROI, Sharpe, drawdown, TVL) + x402 price |
get_strategy | One strategy by name |
list_deployable_agents | Live deployable agent templates (from the hub) |
get_agent | One agent's detail: needs, x402 price, how to deploy |
get_pricing | Marketplace fees (free to follow Β· 15% performance fee) + x402 |
explain_amadeus | Plain-language Amadeus concepts (TEE, UPoW, tokenomics, Nova, Stellarisβ¦) |
Add it to an MCP client (e.g. a Claude Desktop config):
{
"mcpServers": {
"amahub": {
"type": "url",
"url": "https://amahub.pages.dev/mcp"
}
}
}
Or call it directly:
curl -s https://amahub.pages.dev/mcp \
-H 'content-type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call",
"params":{"name":"list_verified_strategies"}}'
Flow: initialize β tools/list β tools/call. Notifications return 202.
GET /api/strategies | Verified strategies + live deployable agents + fees + x402 |
GET /api/agents/{name} | One agent's detail |
GET /openapi.json | OpenAPI 3.0 spec |
GET /llms.txt | Human/agent-readable index |
GET /.well-known/ai-plugin.json | AI-plugin manifest |
Amadeus agents can be called pay-per-request via the x402 standard (HTTP 402), settled in USDC on Base. Each agent's price is in the x402 field of /api/strategies and get_agent.
Can: discover and read verified strategies, deployable agents, pricing, and Amadeus concepts β for humans via an AI client, or for autonomous agents shopping the marketplace.
Can't: trade, follow, deploy, or move money. It's read-only. To act, use the hub API (POST https://api-hub.ama.one/v1/agent/create) with your own key.