Robokassa MCP Server

Comprehensive MCP server for the Robokassa payment gateway (18 tools, full API coverage).

Local serverstdioPython

What is the Robokassa MCP server?

Comprehensive MCP server for the Robokassa payment gateway (18 tools, full API coverage). Exposed over MCP by the robokassa mcp server, that capability becomes something an assistant can invoke while it works, not something you go and do afterwards.

What it actually does

📚 Documentation  ·  PyPI  ·  Docker  ·  MCP Registry

Adding it to your client

robokassa-mcp on PyPI is all you need. Most clients run it directly, so configuration is a few lines and a restart.

Its toolset

Everything the assistant can do here goes through one of these:

  • create_invoice — Build a signed checkout URL (optional 54-ФЗ receipt)
  • check_payment — Get current state of a payment by InvId (via OpStateExt)
  • list_currencies — List payment methods available to the shop
  • calc_out_sum — Compute amount credited to shop for a given payment
  • refund_create — Initiate a refund (requires Refund API access)
  • refund_status — Poll refund progress by requestId
  • verify_result_signature — Validate a ResultURL webhook
  • verify_success_signature — Validate a SuccessURL redirect
  • build_split_invoice — Marketplace multi-recipient checkout
  • send_sms — Paid SMS service
  • partner_refund — Alternative refund path for partner integrators
  • Group — Coverage

Configuration

You will need 4 environment variables: ROBOKASSA_LOGIN, ROBOKASSA_PASSWORD1, ROBOKASSA_PASSWORD2, ROBOKASSA_PASSWORD3. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

Caveats

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Robokassa.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the robokassa mcp server does with a few real requests.

When to reach for it

Plenty of payments and commerce servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Robokassa's toolset — create_invoice, check_payment, list_currencies and 11 more — is a fair guide to whether it matches your workflow. It is maintained by artgas1; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Available tools

ToolWhat it does
create_invoiceBuild a signed checkout URL (optional 54-ФЗ receipt).
check_paymentGet current state of a payment by InvId (via OpStateExt).
list_currenciesList payment methods available to the shop.
calc_out_sumCompute amount credited to shop for a given payment.
refund_createInitiate a refund (requires Refund API access).
refund_statusPoll refund progress by requestId.
verify_result_signatureValidate a ResultURL webhook.
verify_success_signatureValidate a SuccessURL redirect.
build_split_invoiceMarketplace multi-recipient checkout.
send_smsPaid SMS service.
partner_refundAlternative refund path for partner integrators.
GroupCoverage
Recurring✅ parent + child
Auxiliary✅ send_sms, webhook signatures, split payments

How to install the Robokassa MCP server

{
  "mcpServers": {
    "robokassa": {
      "command": "uvx",
      "args": ["robokassa-mcp"],
      "env": {
        "ROBOKASSA_LOGIN": "your-shop-login",
        "ROBOKASSA_PASSWORD1": "password1",
        "ROBOKASSA_PASSWORD2": "password2",
        "ROBOKASSA_PASSWORD3": "password3"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
ROBOKASSA_LOGINConfiguration value read at startup.Optional
ROBOKASSA_PASSWORD1Configuration value read at startup.Optional
ROBOKASSA_PASSWORD2Configuration value read at startup.Optional
ROBOKASSA_PASSWORD3Configuration value read at startup.Optional

Example prompts to try

  • Use Robokassa to create invoice.
  • Use Robokassa to check payment.
  • Use Robokassa to list currencies.

Frequently asked questions

It connects Robokassa to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (create_invoice, check_payment, list_currencies, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Robokassa directly.