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

@codespar/mcp-iniciador

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-iniciador

MCP server for Iniciador — Open Finance Brasil PISP (Pix payment initiation aggregator)

latest
npmnpm
Version
0.1.2
Version published
Maintainers
2
Created
Source

@codespar/mcp-iniciador

MCP server for Iniciador — Open Finance Brasil PISP (Pix payment initiation aggregator). Iniciador holds the ICP-Brasil certificate and orchestrates DCR with each Brazilian bank for instant Pix-out flows.

Quick Start

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "iniciador": {
      "command": "npx",
      "args": ["@codespar/mcp-iniciador"],
      "env": {
        "INICIADOR_API_KEY": "your-api-key"
      }
    }
  }
}

Cursor / VS Code

Same config in .cursor/mcp.json.

Tools (9)

Institutions

ToolIniciador endpointNotes
list_institutionsGET /institutionsBrazilian banks supported for Pix initiation

Consents

ToolIniciador endpointNotes
create_consentPOST /consentsPayment consent for the payer to authorize at their bank
get_consentGET /consents/{id}Current authorization status
revoke_consentDELETE /consents/{id}Revoke before exercise

Payments

ToolIniciador endpointNotes
create_paymentPOST /paymentsInitiate Pix once consent is authorized
get_paymentGET /payments/{id}Status / E2E id / rejection reason
list_paymentsGET /paymentsFilter by date range / status
cancel_paymentPOST /payments/{id}/cancelBest-effort cancel before settlement

Helpers

ToolNotes
get_authorization_urlClient-side builder for the OFB authorization URL (consent id + ISPB + redirect)

Authentication

This server uses Iniciador's API key auth (X-API-KEY header). The Pix-out call itself is signed end-to-end with the consumer's bank-issued consent token, which Iniciador's backend stitches in after the payer authorizes the consent at their bank. OAuth2 client-credentials is required for some flows and lands when consent + bank-issued token plumbing is wired end-to-end.

Issue credentials during Iniciador onboarding:

  • Production: https://iniciador.com.br
  • Docs: https://docs.iniciador.com.br

Sandbox / Testing

Sandbox endpoint: https://sandbox.iniciador.com.br. Override via INICIADOR_API_BASE.

Environment Variables

VariableRequiredDescription
INICIADOR_API_KEYyesAPI key from Iniciador onboarding
INICIADOR_API_BASEnoOverride API base URL (default https://api.iniciador.com.br)

Iniciador vs Pluggy vs Belvo

Three OFB aggregators in this catalog, each with a different specialty:

AggregatorStrengthBest for
IniciadorPix payment initiation (PISP)Outgoing payments under OFB consent
Pluggy (@codespar/mcp-pluggy)Account + transaction readsReconciliation, balance polling
Belvo (@codespar/mcp-belvo)Multi-LATAM Open Finance + payroll + taxCross-border (BR + MX + CO + AR)

For commerce agents that need both reads and writes, compose them — Pluggy/Belvo for account + recon visibility + Iniciador for Pix initiation.

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