BlindPay MCP Server

MCP serverEverything else

Official BlindPay MCP server: stablecoin payouts, payins, quotes and receivers for global payments.

Available today. Use it from your connected AI after setup.

Connect ahel once, and every AI you use reads what you have installed.

Then ask your AI: use BlindPay MCP Server

From the project's README

As published by blindpaylabs/blindpay-mcp in README.md.

The official Model Context Protocol server for BlindPay - Stablecoin API for global payments.

What This MCP Server Does

This MCP server provides AI assistants (Cursor, Claude Code, Codex, etc.) with access to BlindPay's stablecoin payment infrastructure. It exposes tools that allow AI assistants to:

  • Create and manage receivers (individuals/businesses)
  • Process payouts and payins on multiple blockchains
  • Create quotes and get FX rates
  • Manage virtual accounts and blockchain wallets
  • Configure webhooks and API keys
  • And more...

Two ways to connect

Remote server (recommended)Local npx server
URL / commandhttps://mcp.blindpay.com/mcpnpx -y @blindpay/mcp
AuthOAuth 2.1 sign-in with your BlindPay account (PKCE)BLINDPAY_API_KEY env var
TransportStreamable HTTPstdio
Works inClaude, ChatGPT, Cursor, VS Code, Grok, any remote-capable clientAny stdio MCP client

Both expose the same tools. The remote server needs no API key: the client opens a browser, you sign in and pick an instance, and the token is scoped to your role on it.

Tool profiles

Set BLINDPAY_MCP_PROFILE on the local server to choose which tools are exposed:

ProfileToolsUse when
full (default)Every public API operation, including payouts and transfersBuilding or operating with an AI coding assistant
readonlyGET operations only: status, balances, quotes, historyConsumer assistants, or any place a tool that moves money is unwanted

Every tool carries MCP annotations (readOnlyHint, destructiveHint, idempotentHint) derived from its HTTP verb, so clients can gate confirmations themselves.

Prerequisites (local server only)

Get your API key and Instance ID:

  1. Create an account on BlindPay
  2. Create a development instance
  3. Go to the BlindPay Dashboard
  4. Select your instance and click on the API Keys tab
  5. Create a new API key
  6. Copy your instance ID (format: in_xxxxxxxxxxxx) from the dashboard url

Dependencies you need to have installed:

You can check if you have Node.js installed by running node -v. Same for Npm, you can check by running npm -v.

Installation

Cursor

One-click install (remote server):

One-click install (local server with API key):

Add MCP to Cursor

After installation, add your API key and instance ID to ~/.cursor/mcp.json:

{
  "mcpServers": {
    "blindpay": {
      "command": "npx",
      "args": ["-y", "@blindpay/mcp"],
      "env": {
        "BLINDPAY_API_KEY": "your-api-key-here",
        "BLINDPAY_INSTANCE_ID": "your-instance-id-here"
      }
    }
  }
}

Claude Code

As a plugin (remote server, OAuth, no API key):

claude plugin marketplace add blindpaylabs/blindpay-mcp
claude plugin install blindpay@blindpay

Or as a plain MCP server:

claude mcp add --transport http blindpay https://mcp.blindpay.com/mcp

Local server with an API key:

claude mcp add --transport stdio blindpay --env BLINDPAY_API_KEY=your-api-key-here --env BLINDPAY_INSTANCE_ID=your-instance-id-here -- npx -y @blindpay/mcp

Claude Desktop

Add to your Claude Desktop configuration file:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "blindpay": {
      "command": "npx",
      "args": ["-y", "@blindpay/mcp"],
      "env": {
        "BLINDPAY_API_KEY": "your-api-key-here",
        "BLINDPAY_INSTANCE_ID": "your-instance-id-here"
      }
    }
  }
}

Codex

Remote server (OAuth, no API key):

codex mcp add blindpay --url https://mcp.blindpay.com/mcp

Local server with an API key:

codex mcp add blindpay --env BLINDPAY_API_KEY=your-api-key-here --env BLINDPAY_INSTANCE_ID=your-instance-id-here -- npx -y @blindpay/mcp

Or add to your ~/.codex/config.toml (or project-scoped .codex/config.toml):

[mcp_servers.blindpay]
command = "npx"
args = ["-y", "@blindpay/mcp"]

[mcp_servers.blindpay.env]
BLINDPAY_API_KEY = "your-api-key-here"
BLINDPAY_INSTANCE_ID = "your-instance-id-here"

VS Code

Click the Install in VS Code badge at the top, or add to .vscode/mcp.json:

{
  "servers": {
    "blindpay": {
      "type": "http",
      "url": "https://mcp.blindpay.com/mcp"
    }
  }
}

You can also search @mcp blindpay in the Extensions view once the gallery entry is live.

Windsurf

Add to ~/.codeium/windsurf/mcp_config.json:

{
  "mcpServers": {
    "blindpay": {
      "serverUrl": "https://mcp.blindpay.com/mcp"
    }
  }
}

Raycast

Open the Model Context Protocol Registry extension in Raycast, search for BlindPay and click Install Server. Or install manually with Manage Servers → Add Server using the local config from the Cursor section.

Claude (claude.ai / Claude Desktop, remote)

In Settings → Connectors → Add custom connector, paste https://mcp.blindpay.com/mcp and complete the sign-in. Only read-only tools are exposed to consumer directories.

ChatGPT

Enable Developer Mode in Settings → Connectors → Advanced, then Create a connector with https://mcp.blindpay.com/mcp and OAuth authentication.

Grok

Grok connects to remote MCP servers as custom connectors (paid Grok tier). Go to https://grok.com/connectorsNew ConnectorCustom, enter https://mcp.blindpay.com/mcp, leave client credentials empty, and complete the BlindPay sign-in when prompted.

Gemini CLI

gemini extensions install https://github.com/blindpaylabs/blindpay-mcp

Docker

Local stdio server in a container (also listed in the Docker MCP Registry):

docker run -i --rm -e BLINDPAY_API_KEY=your-api-key-here -e BLINDPAY_INSTANCE_ID=your-instance-id-here ghcr.io/blindpaylabs/blindpay-mcp

Build it yourself with docker build -t blindpay-mcp . from this repo.

Any other MCP client

Remote: point the client at https://mcp.blindpay.com/mcp (Streamable HTTP, OAuth 2.1 discovery via /.well-known/oauth-protected-resource). Local: run npx -y @blindpay/mcp over stdio with BLINDPAY_API_KEY set.

Example Prompts

Once configured, you can ask your AI assistant to interact with BlindPay:

"Get me a quote for sending 1000 USDC to a bank account in Brazil"

"List all my recent payouts from the last 7 days"

"Create a virtual account for receiver with ID re_xxxxxxxxxxxx"

"Show me the available payment rails"

"Get all receivers for instance in_xxxxxxxxxxxx"

[!TIP] You can specify BLINDPAY_INSTANCE_ID in your initial prompt or add it as an environment variable. However, some AI tools may not detect it automatically, so you may need to include it explicitly in your prompt.

Documentation

Support

License

This project is licensed under the MIT License - see the LICENSE file for details.

Made with ❤️ by the BlindPay team

Advanced
Delivery
mcp MCP server → your ahel gateway (mcp.ahel.ai) → every connected AI client.
Catalog kind
mcp-server
Gateway key
com-blindpay-mcp
Source
github.com/blindpaylabs/blindpay-mcp
Hosted endpoint
https://mcp.blindpay.com/mcp