{
  "markdown": "> ## 🗄 Репозиторий заархивирован\n>\n> Разработка переехала в **[theYahia/WWmcp](https://github.com/theYahia/WWmcp)** — монорепозиторий MCP-серверов для незападных API: СНГ, MENA, Африка, LATAM, Юго-Восточная Азия. Общее ядро `@theyahia/mcp-core`, единый CI, единый релизный конвейер.\n>\n> Актуальная версия того, что лежало здесь: [`servers/cloudpayments/`](https://github.com/theYahia/WWmcp/tree/main/servers/cloudpayments)\n>\n> Пакет в npm прежний — [`@theyahia/cloudpayments-mcp`](https://www.npmjs.com/package/@theyahia/cloudpayments-mcp), ставится и работает как раньше.\n> Здесь больше ничего не обновляется. Задачи и pull request'ы — в WWmcp.\n>\n> **Archived — development moved to [theYahia/WWmcp](https://github.com/theYahia/WWmcp),** a monorepo of MCP servers for non-Western APIs.\n> The current version of this package now lives at [`servers/cloudpayments/`](https://github.com/theYahia/WWmcp/tree/main/servers/cloudpayments).\n> The npm package [`@theyahia/cloudpayments-mcp`](https://www.npmjs.com/package/@theyahia/cloudpayments-mcp) is unchanged.\n> Please open issues and pull requests there.\n\n# @theyahia/cloudpayments-mcp\n\nMCP server for CloudPayments API -- one-step and two-step payments, refunds, subscriptions, orders (invoice links), transaction history. **12 tools.**\n\n[![npm](https://img.shields.io/npm/v/@theyahia/cloudpayments-mcp)](https://www.npmjs.com/package/@theyahia/cloudpayments-mcp)\n[![license](https://img.shields.io/npm/l/@theyahia/cloudpayments-mcp)](./LICENSE)\n\nPart of [Russian API MCP](https://github.com/theYahia/russian-mcp) series by [@theYahia](https://github.com/theYahia).\n\n## Quick Start\n\n### Claude Desktop\n\n```json\n{\n  \"mcpServers\": {\n    \"cloudpayments\": {\n      \"command\": \"npx\",\n      \"args\": [\"-y\", \"@theyahia/cloudpayments-mcp\"],\n      \"env\": {\n        \"CLOUDPAYMENTS_PUBLIC_ID\": \"your-public-id\",\n        \"CLOUDPAYMENTS_API_SECRET\": \"your-api-secret\"\n      }\n    }\n  }\n}\n```\n\n### Claude Code\n\n```bash\nclaude mcp add cloudpayments -e CLOUDPAYMENTS_PUBLIC_ID=your-id -e CLOUDPAYMENTS_API_SECRET=your-secret -- npx -y @theyahia/cloudpayments-mcp\n```\n\n### Cursor / Windsurf\n\n```json\n{\n  \"cloudpayments\": {\n    \"command\": \"npx\",\n    \"args\": [\"-y\", \"@theyahia/cloudpayments-mcp\"],\n    \"env\": {\n      \"CLOUDPAYMENTS_PUBLIC_ID\": \"your-public-id\",\n      \"CLOUDPAYMENTS_API_SECRET\": \"your-api-secret\"\n    }\n  }\n}\n```\n\n### HTTP Transport\n\n```bash\nHTTP_PORT=3000 npx @theyahia/cloudpayments-mcp\n# or\nnpx @theyahia/cloudpayments-mcp --http 3000\n```\n\nEndpoints: `POST /mcp` (JSON-RPC), `GET /health` (status).\n\n## Auth\n\n| Variable | Required | Description |\n|----------|----------|-------------|\n| `CLOUDPAYMENTS_PUBLIC_ID` | Yes | Public ID (HTTP Basic username) |\n| `CLOUDPAYMENTS_API_SECRET` | Yes | API secret (HTTP Basic password) |\n\nFor testing, use the [CloudPayments test terminal](https://developers.cloudpayments.ru/#testirovanie).\n\n## Tools (12)\n\n### Payments (5)\n\n| Tool | API Endpoint | Description |\n|------|-------------|-------------|\n| `charge_payment` | POST /payments/charge | One-step payment (immediate charge) |\n| `auth_payment` | POST /payments/auth | Two-step payment (authorize/hold) |\n| `confirm_payment` | POST /payments/confirm | Confirm authorized payment (full or partial) |\n| `void_payment` | POST /payments/void | Void authorized payment (release hold) |\n| `get_transaction` | POST /payments/find | Find transaction by ID |\n\n### Refunds (1)\n\n| Tool | API Endpoint | Description |\n|------|-------------|-------------|\n| `refund_payment` | POST /payments/refund | Full or partial refund by transaction ID |\n\n### Subscriptions (4)\n\n| Tool | API Endpoint | Description |\n|------|-------------|-------------|\n| `create_subscription` | POST /subscriptions/create | Create recurring subscription with token |\n| `update_subscription` | POST /subscriptions/update | Update amount, interval, period |\n| `cancel_subscription` | POST /subscriptions/cancel | Cancel active subscription |\n| `list_subscriptions` | POST /subscriptions/find | List subscriptions for a user |\n\n### Orders (1)\n\n| Tool | API Endpoint | Description |\n|------|-------------|-------------|\n| `create_order` | POST /orders/create | Create payment order (invoice link) |\n\n### Transactions (1)\n\n| Tool | API Endpoint | Description |\n|------|-------------|-------------|\n| `list_transactions` | POST /payments/list | List all transactions for a date |\n\n## Demo Prompts\n\n```\nCharge 5000 RUB from the card cryptogram, IP 192.168.1.1, description \"Premium plan\"\n```\n\n```\nCreate a monthly subscription for 999 RUB using token from the last payment, starting May 1st\n```\n\n```\nShow me all transactions for yesterday and refund 2500 RUB on transaction 123456\n```\n\n## Part of Russian API MCP Series\n\n| MCP | Status | Description |\n|-----|--------|-------------|\n| [@metarebalance/dadata-mcp](https://github.com/theYahia/dadata-mcp) | ready | Addresses, companies, banks, phones |\n| [@theyahia/cbr-mcp](https://github.com/theYahia/cbr-mcp) | ready | Currency rates, key rate |\n| [@theyahia/yookassa-mcp](https://github.com/theYahia/yookassa-mcp) | ready | Payments, refunds, receipts, payouts, webhooks |\n| [@theyahia/cloudpayments-mcp](https://github.com/theYahia/cloudpayments-mcp) | ready | Payments, subscriptions, orders |\n| ... | | **+46 servers** -- [full list](https://github.com/theYahia/russian-mcp) |\n\n## License\n\nMIT\n\n---\n\nTelegram: [@vhodvai](https://t.me/vhodvai)\n",
  "bytes": 5395,
  "sha": "ec7b2ccc4cea39dc2a16c7354b40aff3f730bd34ed3fb6bc3c24358fa27c2921",
  "repo_slug": "theyahia/cloudpayments-mcp",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/mcp_io_github_theyahia_cloudpayments_mcp_152169a3/readme"
}