MCP Server
CyberPay MCP Server is the standard entry point for AI Agents to access the CyberPay ecosystem. Through the Model Context Protocol, Agents can directly invoke 22 services.
What is MCP?
MCP (Model Context Protocol) is the standard protocol for AI Agents to interact with external tools. CyberPay implements a complete MCP Server, enabling Claude, Cursor, ChatGPT, and other AI Agents to directly invoke payment, virtual card, SMS, email, and other services.
10 Products · 22 Services
| Layer | Product | Services | Description |
|---|---|---|---|
| 💳 Payment | CyberCheckout | - | x402 protocol payment gateway |
| 💳 Payment | CyberNanoPay | - | TON nano-payments |
| 💳 Payment | CyberPayout | 2 | Multi-chain batch transfers |
| 🛒 Services | CyberCard | 3 | Visa virtual cards |
| 🛒 Services | CyberGift | 6 | Gift cards + top-up + bills |
| 🛒 Services | CyberSMS | 4 | Virtual numbers + verification |
| 🛒 Services | CyberMail | 8 | Email send/receive |
| ⚙️ Infrastructure | CyberHost | - | Decentralized compute |
| ⚙️ Infrastructure | CyberDash | - | Developer console |
| ⚙️ Infrastructure | CyberBot | - | Telegram bot |
Architecture
AI Agent (Claude / Cursor / ChatGPT)
│
│ MCP Protocol
▼
CyberPay MCP Server
│
├── CyberCard → Virtual card issuance
├── CyberGift → Gift cards / top-up / bills
├── CyberSMS → Virtual numbers + SMS
├── CyberMail → Email send/receive
├── CyberPayout → Multi-chain BatchTransfer contracts
├── CyberCheckout → x402 protocol (standalone MCP)
├── CyberNanoPay → TON TEE aggregator (standalone MCP)
└── CyberHost → Decentralized compute (standalone MCP)Quick Start
# Install
npm install -g @cyberpay/mcp
# Configure Claude Desktop
# ~/.claude/claude_desktop_config.json
{
"mcpServers": {
"cyberpay": {
"command": "npx",
"args": ["@cyberpay/mcp"],
"env": {
"CYBERPAY_API_KEY": "your_api_key"
}
}
}
}Once configured, AI Agents can directly invoke all 22 services.
Next Steps
- Quick Start — Get started in 5 minutes
- Service Catalog — Complete service directory
- Authentication — Authentication methods
