Skip to content

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

LayerProductServicesDescription
💳 PaymentCyberCheckout-x402 protocol payment gateway
💳 PaymentCyberNanoPay-TON nano-payments
💳 PaymentCyberPayout2Multi-chain batch transfers
🛒 ServicesCyberCard3Visa virtual cards
🛒 ServicesCyberGift6Gift cards + top-up + bills
🛒 ServicesCyberSMS4Virtual numbers + verification
🛒 ServicesCyberMail8Email send/receive
⚙️ InfrastructureCyberHost-Decentralized compute
⚙️ InfrastructureCyberDash-Developer console
⚙️ InfrastructureCyberBot-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