npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@codespar/mcp-iniciador

v0.1.0

Published

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

Readme

@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

| Tool | Iniciador endpoint | Notes | |---|---|---| | list_institutions | GET /institutions | Brazilian banks supported for Pix initiation |

Consents

| Tool | Iniciador endpoint | Notes | |---|---|---| | create_consent | POST /consents | Payment consent for the payer to authorize at their bank | | get_consent | GET /consents/{id} | Current authorization status | | revoke_consent | DELETE /consents/{id} | Revoke before exercise |

Payments

| Tool | Iniciador endpoint | Notes | |---|---|---| | create_payment | POST /payments | Initiate Pix once consent is authorized | | get_payment | GET /payments/{id} | Status / E2E id / rejection reason | | list_payments | GET /payments | Filter by date range / status | | cancel_payment | POST /payments/{id}/cancel | Best-effort cancel before settlement |

Helpers

| Tool | Notes | |---|---| | get_authorization_url | Client-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:

Sandbox / Testing

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

Environment Variables

| Variable | Required | Description | |---|---|---| | INICIADOR_API_KEY | yes | API key from Iniciador onboarding | | INICIADOR_API_BASE | no | Override 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:

| Aggregator | Strength | Best for | |---|---|---| | Iniciador | Pix payment initiation (PISP) | Outgoing payments under OFB consent | | Pluggy (@codespar/mcp-pluggy) | Account + transaction reads | Reconciliation, balance polling | | Belvo (@codespar/mcp-belvo) | Multi-LATAM Open Finance + payroll + tax | Cross-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