USDC infrastructure: programmable wallets, payouts, and cross-border transfers. Your agent moves stablecoins with instant settlement.
Circle gives your agent 23 tools it calls directly β pick the ones it needs, in Claude, Cursor, or any MCP client.
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-circleAdd this entry to your claude_desktop_config.json (or any MCP-compatible client config).
{
"mcpServers": {
"circle": {
"command": "npx",
"args": [
"-y",
"@codespar/mcp-circle"
],
"env": {
"CIRCLE_API_KEY": "<your_circle_api_key>"
}
}
}
}After restart, your agent can call any of the 23 tools below β try create_wallet first.
Required to authenticate the server. Stored encrypted when using CodeSpar managed hosting.
CIRCLE_API_KEYAPI key for circle
Each tool is independent β your agent loads only what it needs to reduce context and response time.
create_walletget_walletlist_walletscreate_paymentget_paymentcreate_payoutget_payoutlist_payoutsMCP is a protocol β any framework that speaks it can mount this server.