Cloud accounting with invoicing, bank reconciliation, and cash flow management. Your agent automates bookkeeping for Brazilian SMBs.
Conta Azul gives your agent 20 tools it calls directly β pick the ones it needs, in Claude, Cursor, or any MCP client.
list_customers β List customers in Conta Azulcreate_customer β Create a customer in Conta Azulupdate_customer β Update a customer in Conta Azul// 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("list_customers", { /* ... */ });$ npm install @codespar/mcp-conta-azulAdd this entry to your claude_desktop_config.json (or any MCP-compatible client config).
{
"mcpServers": {
"conta-azul": {
"command": "npx",
"args": [
"-y",
"@codespar/mcp-conta-azul"
],
"env": {
"CONTA_AZUL_ACCESS_TOKEN": "<your_conta_azul_access_token>"
}
}
}
}After restart, your agent can call any of the 20 tools below β try list_customers first.
Required to authenticate the server. Stored encrypted when using CodeSpar managed hosting.
CONTA_AZUL_ACCESS_TOKENAPI key for conta-azul
Each tool is independent β your agent loads only what it needs to reduce context and response time.
list_customerscreate_customerupdate_customerdelete_customerlist_productscreate_productupdate_productdelete_productMCP is a protocol β any framework that speaks it can mount this server.