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

The official Model Context Protocol server for BlindPay - Stablecoin API for global payments.
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:
| Remote server (recommended) | Local npx server | |
|---|---|---|
| URL / command | https://mcp.blindpay.com/mcp | npx -y @blindpay/mcp |
| Auth | OAuth 2.1 sign-in with your BlindPay account (PKCE) | BLINDPAY_API_KEY env var |
| Transport | Streamable HTTP | stdio |
| Works in | Claude, ChatGPT, Cursor, VS Code, Grok, any remote-capable client | Any 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.
Set BLINDPAY_MCP_PROFILE on the local server to choose which tools are exposed:
| Profile | Tools | Use when |
|---|---|---|
full (default) | Every public API operation, including payouts and transfers | Building or operating with an AI coding assistant |
readonly | GET operations only: status, balances, quotes, history | Consumer 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.
Get your API key and Instance ID:
in_xxxxxxxxxxxx) from the dashboard urlDependencies 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.
One-click install (remote server):
One-click install (local server with API key):
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"
}
}
}
}
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
Add to your Claude Desktop configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json%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"
}
}
}
}
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"
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.
Add to ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"blindpay": {
"serverUrl": "https://mcp.blindpay.com/mcp"
}
}
}
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.
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.
Enable Developer Mode in Settings → Connectors → Advanced, then Create a connector with https://mcp.blindpay.com/mcp and OAuth authentication.
Grok connects to remote MCP servers as custom connectors (paid Grok tier). Go to https://grok.com/connectors → New Connector → Custom, enter https://mcp.blindpay.com/mcp, leave client credentials empty, and complete the BlindPay sign-in when prompted.
gemini extensions install https://github.com/blindpaylabs/blindpay-mcp
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.
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.
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_IDin 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.
This project is licensed under the MIT License - see the LICENSE file for details.
Made with ❤️ by the BlindPay team
Source-derived launch command. Check the maintainer’s required arguments and credentials before running:
npx -y @blindpay/mcpMerge this template into ~/Library/Application Support/Claude/claude_desktop_config.json. Keep existing servers. Add any arguments, credentials, and permissions required by the maintainer; this template has not been install-tested.
{
"mcpServers": {
"com-blindpay-mcp": {
"command": "npx",
"args": [
"-y",
"@blindpay/mcp"
]
}
}
}Restart Claude Desktop completely for changes to take effect. Confirm the server appears connected in the client’s tool list, then try a read-only example from its documentation.
Claude Desktop setup referenceBlindPay works with any MCP-compatible client. Copy the config snippet from the Configuration section above and add it to the file shown for your client, then restart the application.
~/Library/Application Support/Claude/claude_desktop_config.jsonRestart Claude Desktop completely for changes to take effect.~/.cursor/mcp.jsonRestart Cursor for changes to take effect..vscode/mcp.jsonReload VS Code window for changes to take effect.~/.codeium/windsurf/mcp_config.jsonRestart Windsurf for changes to take effect..mcp.jsonSave at the project root, then start Claude Code in that project and review the MCP server approval prompt. Keep real credentials out of shared files.