Open banking, Pix, and card acquiring. TON integration, partner tags, and real-time settlement for Brazilian commerce.
Stone gives your agent 21 tools it calls directly β pick the ones it needs, in Claude, Cursor, or any MCP client.
get_balance β Get account balancelist_transactions β List account transactionsget_statement β Get account statement for a period// 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("get_balance", { /* ... */ });$ npm install @codespar/mcp-stoneAdd this entry to your claude_desktop_config.json (or any MCP-compatible client config).
{
"mcpServers": {
"stone": {
"command": "npx",
"args": [
"-y",
"@codespar/mcp-stone"
],
"env": {
"STONE_CLIENT_SECRET": "<your_stone_client_secret>"
}
}
}
}After restart, your agent can call any of the 21 tools below β try get_balance first.
Required to authenticate the server. Stored encrypted when using CodeSpar managed hosting.
STONE_CLIENT_SECRETAPI key for stone
Each tool is independent β your agent loads only what it needs to reduce context and response time.
get_balancelist_transactionsget_statementcreate_paymentget_paymentlist_paymentscreate_transfercreate_pix_paymentMCP is a protocol β any framework that speaks it can mount this server.