Install
$ agentstack add mcp-blindpaylabs-blindpay-mcp ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ● Environment & secrets Used
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
BlindPay MCP Server
[](https://discord.gg/2DFKYaxjpp) [](https://twitter.com/intent/follow?screen_name=blindpay) [](https://www.npmjs.com/package/@blindpay/mcp)
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...
Prerequisites
Get your API key and Instance ID:
- Create an account on BlindPay
- Create a development instance
- Go to the BlindPay Dashboard
- Select your instance and click on the API Keys tab
- Create a new API key
- 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:
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
Run the following command in your terminal:
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
Run the following command in your terminal:
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"
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
- Email: [eric@blindpay.com](mailto:eric@blindpay.com)
- Issues: GitHub Issues
License
This project is licensed under the [MIT License](LICENSE) - see the LICENSE file for details.
Made with ❤️ by the BlindPay team
Source & license
This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: blindpaylabs
- Source: blindpaylabs/blindpay-mcp
- License: MIT
- Homepage: https://blindpay.com/blog/mcp
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.