Open Finance BR PISP — Pix payment initiation. Operator triggers a payer→payee transfer through Iniciador's PISP license; payer authorizes once at their bank's app and the payment fires from the payer's own bank account. Alternative to merchant-acquirer rails when the payer's bank should be the source of funds. API key (X-API-KEY) + OAuth2 consent for some flows. Alpha on npm — endpoint set provisional pending live-validation.
Iniciador 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-iniciadorAdd this entry to your claude_desktop_config.json (or any MCP-compatible client config).
{
"mcpServers": {
"iniciador": {
"command": "npx",
"args": [
"-y",
"@codespar/mcp-iniciador"
],
"env": {
"INICIADOR_CLIENT_ID": "<your_iniciador_client_id>",
"INICIADOR_CLIENT_SECRET": "<your_iniciador_client_secret>"
}
}
}
}Required to authenticate the server. Stored encrypted when using CodeSpar managed hosting.
INICIADOR_CLIENT_IDIniciador OAuth2 client ID
INICIADOR_CLIENT_SECRETIniciador OAuth2 client secret
INICIADOR_API_BASEAPI base URL — defaults to Iniciador production. Override for sandbox.
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.