Intra Pay MCP MCP Server

MCP server para operações Pix (cash-in/cash-out) via Intra Pay.

Remote serverstreamable-http

What is the Intra Pay MCP MCP server?

Intra Pay MCP MCP server is a hosted integration for AI assistants that speak the Model Context Protocol. MCP server para operações Pix (cash-in/cash-out) via Intra Pay.

What you get

Este projeto inclui um cliente HTTP tipado, schemas validados com Zod e respostas padronizadas.

What the assistant can call

Once Intra Pay MCP is connected, these are the calls the assistant has available:

  • intrapay_health_check — Verifica o status da conexão
  • intrapay_pix_create_static_qrcode — Gera um QR Code Pix estático
  • intrapay_pix_create_dynamic_immediate_qrcode — Gera um Pix dinâmico para pagamento imediato
  • intrapay_pix_create_dynamic_duedate_qrcode — Gera um Pix dinâmico com data de vencimento
  • intrapay_pix_get_charge_status — Consulta o status de uma cobrança
  • intrapay_pix_cash_out_by_account — Realiza transferência Pix para conta bancária
  • intrapay_pix_cash_out_by_key — Realiza transferência Pix via chave (CPF, Email, etc.)
  • intrapay_pix_cash_out_by_emv — Realiza pagamento lendo um código "Copia e Cola" (EMV)
  • intrapay_webhook_create — Registra um novo webhook
  • intrapay_webhook_list — Lista os webhooks cadastrados
  • Cursor — 1. Vá em Settings > MCP > Add Server. 2. Selecione transporte HTTP (ou SSE). 3. URL: https://mcp.intrapay.io/mcp 4. Nome: intrapay

Configuration and credentials

You will need 4 environment variables: SUA_CLIENT_KEY, SEU_CLIENT_SECRET, INTRAPAY_CLIENT_KEY, INTRAPAY_CLIENT_SECRET. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

Setting it up

Being a remote server, there is no local install. You register the endpoint with your client, authorise it once, and the tools appear.

Choosing this one

This sits in the team communication group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Intra Pay MCP's toolset — intrapay_health_check, intrapay_pix_create_static_qrcode, intrapay_pix_create_dynamic_immediate_qrcode and 8 more — is a fair guide to whether it matches your workflow. It is maintained by intra-pay; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Intra Pay MCP's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Before you rely on it

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • With 11 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Intra Pay MCP.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the intra pay mcp mcp server does with a few real requests.

Available tools

ToolWhat it does
intrapay_health_checkVerifica o status da conexão.
intrapay_pix_create_static_qrcodeGera um QR Code Pix estático.
intrapay_pix_create_dynamic_immediate_qrcodeGera um Pix dinâmico para pagamento imediato.
intrapay_pix_create_dynamic_duedate_qrcodeGera um Pix dinâmico com data de vencimento.
intrapay_pix_get_charge_statusConsulta o status de uma cobrança.
intrapay_pix_cash_out_by_accountRealiza transferência Pix para conta bancária.
intrapay_pix_cash_out_by_keyRealiza transferência Pix via chave (CPF, Email, etc.).
intrapay_pix_cash_out_by_emvRealiza pagamento lendo um código "Copia e Cola" (EMV).
intrapay_webhook_createRegistra um novo webhook.
intrapay_webhook_listLista os webhooks cadastrados.
Cursor1. Vá em **Settings** > **MCP** > **Add Server**. 2. Selecione transporte **HTTP** (ou SSE). 3. URL: https://mcp.intrapay.io/mcp 4. Nome: intrapay *Nota: O Cursor pode não ter interface gráfica para adicionar headers cus

How to install the Intra Pay MCP MCP server

{
  "mcpServers": {
    "intrapay": {
      "command": "node",
      "args": [
        "C:\\Caminho\\Para\\mcp-server\\dist\\server.js",
        "--client-key=SUA_KEY_PRODUCAO",
        "--client-secret=SEU_SECRET_PRODUCAO"
      ]
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
SUA_CLIENT_KEYCredential the server authenticates with.Yes
SEU_CLIENT_SECRETCredential the server authenticates with.Yes
INTRAPAY_CLIENT_KEYCredential the server authenticates with.Yes
INTRAPAY_CLIENT_SECRETCredential the server authenticates with.Yes

Example prompts to try

  • Use Intra Pay MCP to intrapay health check.
  • Use Intra Pay MCP to intrapay pix create static qrcode.
  • Use Intra Pay MCP to intrapay pix create dynamic immediate qrcode.

Frequently asked questions

It connects Intra Pay MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 11 tools (intrapay_health_check, intrapay_pix_create_static_qrcode, intrapay_pix_create_dynamic_immediate_qrcode, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Intra Pay MCP directly.