Skip to main content
RI

Rinne

v0.1.0API Key

Adquirencia de tarjetas, PIX, tarjetas guardadas y 3D Secure en una jerarquía de organización/merchant. Tu agente registra merchants, ejecuta transacciones de tarjeta y PIX, y mueve payouts vía cashouts y banking.

62 herramientas5 env vars🇧🇷 Brasilestable en npm

Qué puede hacer tu agente

Rinne le da a tu agente 62 tools que llama directo — elegí las que necesite, en Claude, Cursor o cualquier cliente MCP.

  • get_companyGet the authenticated company (organization or merchant, depending on the API key's scope).
  • update_companyUpdate the authenticated company. All fields optional.
  • create_merchantCreate a new merchant under your organization. Requires KYC data. Financial fields may be required by specific affiliation providers later.
Ejemplo de llamada
// 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("get_company", { /* ... */ });

Instalar

terminal
$ npm install @codespar/mcp-rinne

Quickstart

Agregá esta entrada a tu claude_desktop_config.json (o a la config de cualquier cliente compatible con MCP).

claude_desktop_config.json
{
  "mcpServers": {
    "rinne": {
      "command": "npx",
      "args": [
        "-y",
        "@codespar/mcp-rinne"
      ],
      "env": {
        "RINNE_API_KEY": "<your_rinne_api_key>"
      }
    }
  }
}

Después de reiniciar, tu agente puede llamar cualquiera de las 62 herramientas de abajo — probá get_company primero.

Variables de entorno · 5

Necesarias para autenticar el server. Almacenadas cifradas al usar el hosting gestionado de CodeSpar.

RINNE_API_KEY
obligatoriosecret

API key sent as x-api-key header on every request. Organization-level keys see all merchants; merchant-level keys are scoped to one merchant.

RINNE_SANDBOX
opcional

Defaults to sandbox (https://api-sandbox.rinne.com.br/core). Set to "false" for production (https://api.rinne.com.br/core).

RINNE_EMAIL
opcional

Login identifier for the access-management tools (API Keys, Roles, Permissions, org Users, Zipcode lookup), which reject x-api-key by design and require a JWT session.

RINNE_PASSWORD
opcionalsecret

Login password paired with RINNE_EMAIL.

RINNE_COMPANY_ID
opcional

Company to select after JWT login, for accounts with access to multiple companies.

Herramientas disponibles · 62

Cada herramienta es independiente — tu agente carga solo lo que necesita para reducir contexto y tiempo de respuesta.

READget_company
Get the authenticated company (organization or merchant, depending on the API key's scope).
WRITEupdate_company
Update the authenticated company. All fields optional.
WRITEcreate_merchant
Create a new merchant under your organization. Requires KYC data. Financial fields may be required by specific affiliation providers later.
READlist_merchants
List merchants under your organization.
READget_merchant
Get merchant details by ID.
WRITEupdate_merchant
Update a merchant. All fields optional besides merchant_id.
WRITEcreate_affiliation
Create a merchant account with a payment provider (e.g. RINNE, CAPPTA, CELCOIN), enabling transaction processing for the given payment methods and capture channels. Starts in PENDING_APPROVAL.
WRITEregister_affiliation
Register a gateway-mode affiliation — bring an existing account/credentials with the provider instead of having Rinne provision a new one.

Frameworks compatibles

MCP es un protocolo — cualquier framework que lo hable puede montar este server.

Claude Agent SDKAnthropic
OpenAI AgentsOpenAI
Vercel AI SDKVercel
LangChainLangChain
LlamaIndexLlamaIndex
CrewAICrewAI
MastraMastra
Cualquier cliente MCPProtocolo

Preguntas frecuentes

Corré `npx -y @codespar/mcp-rinne` y agregá el bloque de config de arriba a tu cliente MCP — Claude, Cursor, VS Code o cualquier cliente compatible con MCP. Sin build, sin SDK. ¿Preferís hosted? El tier gestionado de CodeSpar lo corre por vos, con la auth resuelta.
Rinne — MCP server · 62 tools | CodeSpar