Open Finance BR aggregator (TPP). Single API across all BR banks: account discovery, balances, transactions, identity, investments, loans, and Pix payment initiation. Pluggy holds the ICP-Brasil cert and does Dynamic Client Registration with each bank — operator doesn't. Auth via clientId + clientSecret minting a short-lived X-API-KEY. Alpha on npm — endpoint set provisional pending live-validation.
Pluggy gives your agent 0 tools it calls directly — pick the ones it needs, in Claude, Cursor, or any MCP client.
// 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_resources", { /* ... */ });$ npm install @codespar/mcp-pluggyAdd this entry to your claude_desktop_config.json (or any MCP-compatible client config).
{
"mcpServers": {
"pluggy": {
"command": "npx",
"args": [
"-y",
"@codespar/mcp-pluggy"
],
"env": {
"PLUGGY_CLIENT_ID": "<your_pluggy_client_id>",
"PLUGGY_CLIENT_SECRET": "<your_pluggy_client_secret>"
}
}
}
}Required to authenticate the server. Stored encrypted when using CodeSpar managed hosting.
PLUGGY_CLIENT_IDPluggy client ID issued at https://dashboard.pluggy.ai
PLUGGY_CLIENT_SECRETPluggy client secret
Each tool is independent — your agent loads only what it needs to reduce context and response time.
Tool list is being indexed. Check the source on GitHub in the meantime.
MCP is a protocol — any framework that speaks it can mount this server.