CCM
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Claude Code Marketplaces

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Skill index
  • MCP index
  • Marketplace index
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by mertbuilds.com

Independent project, not affiliated with Anthropic
theyahia avatar

Robokassa Mcp

theyahia/robokassa-mcp
authSTDIOregistry active
Summary

Connects Claude to Robokassa, a Russian payment processor, giving you two straightforward operations: generating signed payment URLs and checking invoice status. Both tools handle MD5 signature generation automatically using your merchant credentials. The create_invoice tool builds payment links with optional 54-FZ compliant receipts, while check_invoice queries the OpStateExt XML interface to get transaction status. Reach for this when you're building payment flows for Russian markets and want Claude to generate payment links or verify transactions without manual signature calculation. Supports both test and production modes via environment flags.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →

🗄 Репозиторий заархивирован

Разработка переехала в theYahia/WWmcp — монорепозиторий MCP-серверов для незападных API: СНГ, MENA, Африка, LATAM, Юго-Восточная Азия. Общее ядро @theyahia/mcp-core, единый CI, единый релизный конвейер.

Актуальная версия того, что лежало здесь: servers/robokassa/

Пакет в npm прежний — @theyahia/robokassa-mcp, ставится и работает как раньше. Здесь больше ничего не обновляется. Задачи и pull request'ы — в WWmcp.

Archived — development moved to theYahia/WWmcp, a monorepo of MCP servers for non-Western APIs. The current version of this package now lives at servers/robokassa/. The npm package @theyahia/robokassa-mcp is unchanged. Please open issues and pull requests there.

@theyahia/robokassa-mcp

MCP server for Robokassa payment API. 2 tools for invoice creation (with MD5 signature) and status checking.

npm license

Quick Start

Claude Desktop

{
  "mcpServers": {
    "robokassa": {
      "command": "npx",
      "args": ["-y", "@theyahia/robokassa-mcp"],
      "env": {
        "ROBOKASSA_LOGIN": "your-login",
        "ROBOKASSA_PASSWORD1": "your-password1",
        "ROBOKASSA_PASSWORD2": "your-password2"
      }
    }
  }
}

Claude Code

claude mcp add robokassa -e ROBOKASSA_LOGIN=login -e ROBOKASSA_PASSWORD1=pass1 -e ROBOKASSA_PASSWORD2=pass2 -- npx -y @theyahia/robokassa-mcp

Cursor / Windsurf

{
  "robokassa": {
    "command": "npx",
    "args": ["-y", "@theyahia/robokassa-mcp"],
    "env": {
      "ROBOKASSA_LOGIN": "your-login",
      "ROBOKASSA_PASSWORD1": "your-password1",
      "ROBOKASSA_PASSWORD2": "your-password2"
    }
  }
}

Tools

ToolDescription
create_invoiceCreate payment URL with MD5 signature, optional 54-FZ receipt
check_invoiceCheck invoice status via OpStateExt XML interface

Auth

VariableRequiredDescription
ROBOKASSA_LOGINYesMerchant login
ROBOKASSA_PASSWORD1YesPassword 1 (for payment signature)
ROBOKASSA_PASSWORD2YesPassword 2 (for status check signature)
ROBOKASSA_TESTNoSet to "true" for test mode

HTTP Transport

HTTP_PORT=3000 npx @theyahia/robokassa-mcp
# or
npx @theyahia/robokassa-mcp --http 3000

Endpoints: POST /mcp (JSON-RPC), GET /health (status).

Skills

  • skill-create-invoice -- create a Robokassa payment URL with MD5 signature
  • skill-check-payment -- check invoice status via OpStateExt

License

MIT

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →

Configuration

ROBOKASSA_LOGIN*secret

API key for the service

Categories
Finance & Commerce
Registryactive
Package@theyahia/robokassa-mcp
TransportSTDIO
AuthRequired
UpdatedMar 31, 2026
View on GitHub

More from theyahia

  • Roistat Mcp
  • Sendpulse Mcp
  • Sms Ru Mcp
  • Superjob Mcp
  • Tkassa Mcp
  • Travelpayouts Mcp
  • Unisender Mcp
  • Vk Mcp
  • Getcourse Mcp
  • Jivosite Mcp
  • Kaspi Mcp
  • Retailcrm Mcp
  • Sber Mcp
  • Yandex Speechkit Mcp
  • 1c-rest-mcp6
  • yandex-direct-mcp4
  • moysklad-mcp3
  • claude-webcache1
  • yandex-metrika-mcp1
  • Yookassa Mcp3
  • voximplant-mcp1
  • mts-exolve-mcp
  • Chestnyznak Mcp1
  • Elma365 Mcp1

Related Finance & Commerce MCP Servers

View all →
tooloracle avatar
Ecommerceoracle

tooloracle/ecommerceoracle

EcommerceOracle - 8 e-commerce tools: Shopify, WooCommerce, GMV, conversions, returns.
toreva avatar
Kit

toreva/kit

Non-custodial execution primitives for DeFi on Solana. 1 bps to open. Everything else is free.
tradingcalc avatar
tradingcalc-mcp

tradingcalc/tradingcalc-mcp

19 deterministic crypto futures calculators and workflows across 4 suites. Trade planning, risk & margin, funding & carry. Formulas normalized across 7 exchanges (Binance, Bybit, OKX, Hyperliquid, MEXC, KuCoin, Aster). Not AI estimates — exact numbers your bot can trust. Every formula is regression-tested. Access via Streamable HTTP MCP or REST.
tradingcalc avatar
tradingcalc-mcp

tradingcalc/tradingcalc-mcp-cf09cc89

19 deterministic crypto futures calculators and workflows across 4 suites. Trade planning, risk & margin, funding & carry. Formulas normalized across 7 exchanges (Binance, Bybit, OKX, Hyperliquid, MEXC, KuCoin, Aster). Not AI estimates — exact numbers your bot can trust. Every formula is regression-tested. Access via Streamable HTTP MCP or REST.
travis-kellogg1 avatar
Coin Railz

travis-kellogg1/coinrailz-mcp

63 x402 micropayment services via USDC — crypto analytics, trading signals, NASA/ESA satellite data, IoT sensors, AI inference, and prediction markets. Coinbase AgentKit compatible. Pay per call with prepaid credits or native on-chain USDC.
travis-kellogg1 avatar
Coin Railz

travis-kellogg1/coinrailz-mcp-917b0674

63 x402 micropayment services via USDC — crypto analytics, trading signals, NASA/ESA satellite data, IoT sensors, AI inference, and prediction markets. Coinbase AgentKit compatible. Pay per call with prepaid credits or native on-chain USDC.