Brazilian payments infrastructure: Pix, boleto, card and native split of receivables. Your agent creates charges, reconciles settlements, and splits payouts across partners — in a single MCP call.
Zoop gives your agent 28 tools it calls directly — pick the ones it needs, in Claude, Cursor, or any MCP client.
create_transaction — Create a transaction in Zoop (Pix, boleto, or credit card)get_transaction — Get transaction details by IDlist_transactions — List transactions with optional filters// 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_transaction", { /* ... */ });$ npm install @codespar/mcp-zoopAdd this entry to your claude_desktop_config.json (or any MCP-compatible client config).
{
"mcpServers": {
"zoop": {
"command": "npx",
"args": [
"-y",
"@codespar/mcp-zoop"
],
"env": {
"ZOOP_API_KEY": "<your_zoop_api_key>"
}
}
}
}After restart, your agent can call any of the 28 tools below — try create_transaction first.
Required to authenticate the server. Stored encrypted when using CodeSpar managed hosting.
ZOOP_API_KEYAPI key for zoop
Each tool is independent — your agent loads only what it needs to reduce context and response time.
create_transactionget_transactionlist_transactionscreate_split_rulecreate_sellerget_sellerlist_sellerscreate_buyerMCP is a protocol — any framework that speaks it can mount this server.