fiatdock-mcp
OfficialIntegration with Windsurf (Codeium's IDE) to perform non-custodial off-ramp and on-ramp conversions, including quote retrieval, session creation, and order tracking.
Integration with CrewAI to perform non-custodial off-ramp and on-ramp conversions, including quote retrieval, session creation, and order tracking.
Integration with LangChain to perform non-custodial off-ramp and on-ramp conversions, including quote retrieval, session creation, and order tracking.
Integration with OpenAI Agents SDK to perform non-custodial off-ramp and on-ramp conversions, including quote retrieval, session creation, and order tracking.
fiatdock-mcp
Move value between USDC and a bank account from any AI agent — non-custodially (conversion, KYC and custody are handled by Transak, a licensed provider; FiatDock never touches funds).
npx -y fiatdock-mcp # that's it — 4 MCP tools over stdio
# optional env: AGENT_PRIVATE_KEY=0x... auto-pays the $0.05 x402 fee for paid toolsTool | Cost | What it does |
| free | Live rate + all fees itemised (incl. the 1% service commission) |
| $0.05 USDC via x402 | Agent's USDC → owner's own bank account; returns a one-time |
| $0.05 USDC via x402 | Owner's own fiat → USDC to the agent's wallet (address locked) |
| free | Track an order by |
Remote endpoint (no install):
https://fiatdock.com/mcp— Streamable HTTP, stateless, CORS-enabled. Paid tools return the x402 402 challenge there (remote can't sign payments).Official MCP Registry:
com.fiatdock/fiatdock-mcpNo MCP?
GET https://fiatdock.com/tools.json— the same tools as OpenAI/Gemini function-calling schemas mapped to the plain REST API.Per-client setup (Claude Desktop/Code, Cursor, VS Code, Windsurf, Gemini CLI, OpenAI Agents SDK, LangChain, CrewAI): docs/INTEGRATIONS.md · runnable examples: docs/examples/
Compliance (binding): users must be 18+, in Portugal or Transak-supported EU/EEA countries (not available in the UK or restricted countries). Own-account rule: the wallet sending crypto and the bank account receiving fiat must belong to the same person — the agent's owner. No third-party funds, no aggregation, no person-to-person transfers. Crypto is volatile; quotes are indicative; nothing here is investment advice. Terms · Privacy · Risk warning
Environment
Variable | Required | Purpose |
| no (default | FiatDock API base URL |
| only for paid tools | Agent wallet key used to auto-pay the $0.05 x402 fee. Without it, free tools still work and paid tools return the 402 challenge. Use a dedicated low-balance wallet; never your main key. |
Related MCP server: pay-mcp
Claude Desktop / Cursor / Windsurf / Gemini CLI
All four read the same mcpServers shape (file: claude_desktop_config.json, ~/.cursor/mcp.json, ~/.codeium/windsurf/mcp_config.json, ~/.gemini/settings.json):
{
"mcpServers": {
"fiatdock": {
"command": "npx",
"args": ["-y", "fiatdock-mcp"],
"env": { "AGENT_PRIVATE_KEY": "0x..." }
}
}
}Claude Code
claude mcp add fiatdock -e AGENT_PRIVATE_KEY=0x... -- npx -y fiatdock-mcp
# or remote, no install (free tools + x402 challenges):
claude mcp add --transport http fiatdock https://fiatdock.com/mcpVS Code (Copilot agent mode)
.vscode/mcp.json:
{
"servers": {
"fiatdock": { "type": "stdio", "command": "npx", "args": ["-y", "fiatdock-mcp"], "env": { "AGENT_PRIVATE_KEY": "0x..." } }
}
}OpenAI Agents SDK / LangChain / CrewAI
All three consume MCP servers natively — point them at npx -y fiatdock-mcp (stdio) or https://fiatdock.com/mcp (Streamable HTTP):
# OpenAI Agents SDK
from agents.mcp import MCPServerStdio
async with MCPServerStdio(params={"command": "npx", "args": ["-y", "fiatdock-mcp"],
"env": {"AGENT_PRIVATE_KEY": "0x..."}}) as fiatdock: ...
# LangChain (langchain-mcp-adapters)
from langchain_mcp_adapters.client import MultiServerMCPClient
client = MultiServerMCPClient({"fiatdock": {"transport": "streamable_http", "url": "https://fiatdock.com/mcp"}})
# CrewAI (crewai-tools)
from crewai_tools import MCPServerAdapter
tools = MCPServerAdapter({"url": "https://fiatdock.com/mcp", "transport": "streamable-http"})How a typical off-ramp flows
get_quote(free) — agent checks the rate and the full fee breakdown.create_offramp_session— pays $0.05 in USDC automatically via x402, receivescheckoutUrl+partnerOrderId.The agent forwards
checkoutUrlto its human owner (valid ~5 minutes, single use). KYC happens once, ever, at the provider.get_order_status(or a signed callback) confirmsCOMPLETED.
Security
Found a vulnerability? Please report it privately to osama@fiatdock.com — see SECURITY.md. Never open a public issue for security reports.
License
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/fiatdock/fiatdock'
If you have feedback or need assistance with the MCP directory API, please join our Discord server