coinnect-dev/coinnect
The free open map for global money. Find the cheapest path to send money between any two currencies. For humans and agents
Platform-specific configuration:
{
"mcpServers": {
"coinnect": {
"command": "npx",
"args": [
"-y",
"coinnect"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
> The free open map for global money.
[coinnect.bot](https://coinnect.bot) · Non-profit · Open source · Bot-friendly
---
Coinnect finds the cheapest path to send money between any two currencies — across traditional remittance services, crypto exchanges, and regional P2P platforms.
You tell it where money needs to go. It tells you how to get there, ranked by cost and time. It never touches your funds.
GET https://coinnect.bot/v1/quote?from=USD&to=NGN&amount=500{
"routes": [
{
"rank": 1,
"label": "Cheapest",
"total_cost_pct": 1.4,
"total_time_minutes": 60,
"steps": [
{ "from": "USD", "to": "USDC", "via": "Kraken", "fee_pct": 0.5 },
{ "from": "USDC", "to": "NGN", "via": "Yellow Card", "fee_pct": 0.9 }
],
"you_send": 500.00,
"they_receive": 762450,
"vs_western_union_saving_usd": 21.50
}
]
}Every comparison platform faces the same problem: the business model eventually compromises the product. Affiliate commissions, promoted listings, premium placements — these introduce bias into what should be a purely informational service.
Coinnect accepts no commission from any exchange, ever. It is funded by voluntary donations from users who save money using it.
Humans use the web interface at coinnect.bot: enter amount, origin, destination — get ranked routes with step-by-step instructions.
Machines query the public REST API directly. Designed to be called as a tool by AI agents, chatbots, and automated systems. Full OpenAPI spec at `/docs`.
AI agents via MCP — ships with a native MCP server:
| Tool | Description | |------|-------------| | coinnect_quote | Find cheapest/fastest routes between any two currencies | | coinnect_corridors | List supported currency pairs | | coinnect_explain_route | Natural lan
Loading reviews...