Convert money between currencies at live exchange rates.
Convert an amount between world currencies (ISO 4217 codes like USD, EUR, GBP, JPY) using live daily exchange rates. Available over MCP and as a pay-per-call x402 HTTP endpoint.
Add the remote MCP server to any client, or call the x402 HTTP endpoint directly.
Claude / Cursor / Windsurf
claude mcp add --transport http agishub https://api.agishub.com/mcpmcp.json
{
"mcpServers": {
"agishub": {
"url": "https://api.agishub.com/mcp"
}
}
}x402 HTTP (pay-per-call)
curl -X POST https://api.agishub.com/paid/convert-currency \
-H "Content-Type: application/json" \
-d '{ "amount": 100, "from": "USD", "to": "EUR" }'
# → 402 Payment Required, then pay per call in USDC on Base (x402)| convert_currency | Convert an amount between currencies at live exchange rates. |