Infraestrutura de USDC: programmable wallets, payouts e transferências cross-border. Seu agente move stablecoins com liquidação instantânea.
O Circle dá ao seu agente 23 tools que ele chama direto — escolha as que precisar, no Claude, Cursor ou qualquer cliente MCP.
create_wallet — Create a new Circle business-account walletget_wallet — Get wallet details by IDlist_wallets — List all Circle wallets// Your agent calls a tool directly — no glue code.
// CodeSpar's managed tier handles OAuth2, token rotation and rate limits.
const result = await session.call("create_wallet", { /* ... */ });$ npm install @codespar/mcp-circleAdicione esta entrada ao seu claude_desktop_config.json (ou a config de qualquer cliente compatível com MCP).
{
"mcpServers": {
"circle": {
"command": "npx",
"args": [
"-y",
"@codespar/mcp-circle"
],
"env": {
"CIRCLE_API_KEY": "<your_circle_api_key>"
}
}
}
}Depois de reiniciar, seu agente pode chamar qualquer uma das 23 ferramentas abaixo — teste create_wallet primeiro.
Necessárias pra autenticar o server. Armazenadas criptografadas ao usar a hospedagem gerenciada da CodeSpar.
CIRCLE_API_KEYAPI key for circle
Cada ferramenta é independente — seu agente carrega só o que precisa pra reduzir contexto e tempo de resposta.
create_walletget_walletlist_walletscreate_paymentget_paymentcreate_payoutget_payoutlist_payoutsMCP é um protocolo — qualquer framework que o fale pode montar este server.