🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@codespar/mcp-pluggy

Package Overview
Dependencies
Maintainers
2
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@codespar/mcp-pluggy

MCP server for Pluggy — Open Finance Brasil aggregator (ITP/TPP)

latest
npmnpm
Version
0.1.2
Version published
Maintainers
2
Created
Source

@codespar/mcp-pluggy

MCP server for Pluggy — Open Finance Brasil aggregator (ITP/TPP). Pluggy holds the ICP-Brasil certificate and runs Dynamic Client Registration with each Brazilian bank, so you integrate against one API instead of N.

Quick Start

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "pluggy": {
      "command": "npx",
      "args": ["@codespar/mcp-pluggy"],
      "env": {
        "PLUGGY_CLIENT_ID": "your-client-id",
        "PLUGGY_CLIENT_SECRET": "your-client-secret"
      }
    }
  }
}

Cursor / VS Code

Same config in .cursor/mcp.json or VS Code's MCP integration.

Tools (16)

Connectors + categories

ToolPluggy endpointNotes
list_connectorsGET /connectorsFilter by name / types / countries / sandbox
get_connectorGET /connectors/{id}Single connector definition
list_categoriesGET /categoriesTransaction categorization taxonomy

Connect token

ToolPluggy endpointNotes
create_connect_tokenPOST /connect_tokenEmbed Pluggy Connect widget on the client

Items (bank connections)

ToolPluggy endpointNotes
create_itemPOST /itemsNew bank connection from credentials
list_itemsGET /itemsLists existing connections
get_itemGET /items/{id}Single connection
update_itemPATCH /items/{id}Refresh credentials / trigger sync
delete_itemDELETE /items/{id}Revoke connection

Accounts + transactions + identity

ToolPluggy endpointNotes
list_accountsGET /accounts?itemId=...Checking / savings / credit / investment
get_accountGET /accounts/{id}Single account
list_transactionsGET /transactions?accountId=...Date-range filter
get_transactionGET /transactions/{id}Single transaction
list_identitiesGET /identity?itemId=...Legal name + document + address

Payments (PISP)

ToolPluggy endpointNotes
create_payment_intentPOST /payments/intentsInitiate a Pluggy Payments intent
get_payment_intentGET /payments/intents/{id}Poll status

Authentication

Pluggy uses an OAuth2 client-credentials flow:

  • Client obtains an API key by POST /auth with clientId + clientSecret
  • Subsequent requests include the API key as X-API-KEY

Issue credentials at the Pluggy dashboard:

  • Production: https://dashboard.pluggy.ai
  • Docs: https://docs.pluggy.ai

Sandbox / Testing

Pluggy provides sandbox connectors with synthetic accounts and transactions. The sandbox uses the same API endpoint (https://api.pluggy.ai); the connector list returned by /connectors includes sandbox banks (Pluggy Bank, BR · Pluggy Bank).

Environment Variables

VariableRequiredDescription
PLUGGY_CLIENT_IDyesClient ID from the Pluggy dashboard
PLUGGY_CLIENT_SECRETyesClient secret from the Pluggy dashboard
PLUGGY_API_BASEnoOverride API base (default https://api.pluggy.ai)

Why use Pluggy via CodeSpar

If you only need the MCP server, install the package directly. If you're building a commerce agent that needs Pluggy + Pix + NF-e + WhatsApp + dashboard governance, look at the managed tier.

Enterprise

Need governance, budget limits, and audit trails for agent payments? CodeSpar Enterprise adds policy engine, payment routing, and compliance templates on top of these MCP servers.

License

MIT

Keywords

mcp

FAQs

Package last updated on 22 Jun 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts