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

cdek-mcp

theyahia/cdek-mcp
STDIOregistry active
Summary

Wraps the CDEK v2 delivery API with 16 tools covering the full Russian logistics workflow. You get tariff calculation across routes, order creation and cancellation, shipment tracking by waybill number, city and pickup point search, courier scheduling, and barcode generation for labels. Handles OAuth token management automatically with proactive refresh. Ships with sandbox mode using CDEK's test environment at api.edu.cdek.ru. Reach for this when building e-commerce apps that need delivery integration in Russia or when you want Claude to quote shipping costs, find the nearest parcel locker, or generate waybills without leaving the conversation.

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 →

cdek-mcp

npm CI License: MIT

MCP server for the CDEK delivery API (v2). 16 tools covering the full delivery lifecycle: tariff calculation, order management, shipment tracking, location search, courier pickup, barcode/receipt generation, and webhooks.

Tools (16)

Tariffs

ToolDescription
calculate_tariffCalculate delivery cost and time for a specific tariff
calculate_tariff_listGet all available tariffs with prices for a route

Orders

ToolDescription
create_orderCreate a delivery order with sender, recipient, packages
get_orderGet order details and status by UUID
delete_orderCancel/delete an order by UUID
list_ordersSearch/filter orders by date range, IM number, or CDEK waybill

Tracking

ToolDescription
track_shipmentTrack shipment by CDEK waybill number

Locations

ToolDescription
get_citiesSearch city directory by name, postal code, or country
get_regionsSearch region directory by country or name
list_delivery_pointsFind pickup points and parcel lockers by city or GPS coordinates

Barcode & Print

ToolDescription
generate_barcodeGenerate barcode/label for an order
print_receiptGenerate receipt/waybill PDF for an order

Courier Pickup

ToolDescription
create_courier_pickupSchedule a courier pickup for an order
get_courier_pickupCheck courier pickup request status

Webhooks

ToolDescription
create_webhookRegister webhook for order status updates or delivery photos
delete_webhookRemove a webhook subscription by UUID

Quick Start

Claude Desktop

~/.config/claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "cdek": {
      "command": "npx",
      "args": ["-y", "@theyahia/cdek-mcp"],
      "env": {
        "CDEK_CLIENT_ID": "<YOUR_CLIENT_ID>",
        "CDEK_CLIENT_SECRET": "<YOUR_CLIENT_SECRET>",
        "CDEK_SANDBOX": "true"
      }
    }
  }
}

Cursor / Windsurf

.cursor/mcp.json or .windsurf/mcp.json:

{
  "mcpServers": {
    "cdek": {
      "command": "npx",
      "args": ["-y", "@theyahia/cdek-mcp"],
      "env": {
        "CDEK_CLIENT_ID": "<YOUR_CLIENT_ID>",
        "CDEK_CLIENT_SECRET": "<YOUR_CLIENT_SECRET>",
        "CDEK_SANDBOX": "true"
      }
    }
  }
}

VS Code (Copilot)

.vscode/mcp.json:

{
  "servers": {
    "cdek": {
      "command": "npx",
      "args": ["-y", "@theyahia/cdek-mcp"],
      "env": {
        "CDEK_CLIENT_ID": "<YOUR_CLIENT_ID>",
        "CDEK_CLIENT_SECRET": "<YOUR_CLIENT_SECRET>",
        "CDEK_SANDBOX": "true"
      }
    }
  }
}

Streamable HTTP Transport

For web deployments, use the --http flag or HTTP_PORT env var:

HTTP_PORT=3000 npx @theyahia/cdek-mcp --http

Endpoints:

  • POST /mcp — MCP JSON-RPC
  • GET /mcp — SSE stream
  • DELETE /mcp — session termination
  • GET /health — health check

Environment Variables

VariableRequiredDescription
CDEK_CLIENT_IDYesClient ID from CDEK dashboard
CDEK_CLIENT_SECRETYesClient Secret from CDEK dashboard
CDEK_SANDBOXNotrue to use sandbox (api.edu.cdek.ru)
HTTP_PORTNoPort for HTTP transport (enables HTTP mode)

Get your API keys: CDEK Dashboard > Integration > API Keys.

Sandbox Mode

Set CDEK_SANDBOX=true to use the CDEK test environment (api.edu.cdek.ru). Production uses api.cdek.ru.

CDEK publishes a shared sandbox account for integration testing:

  • Client ID: EMscd6r9JnFiQ3bLoyjJY6eM78JrJceI
  • Client Secret: PjLZkKBHEiLK3YsjtNrt3TGNG0ahs3kh

⚠️ CDEK rotates this shared test account from time to time. If you get OAuth token error (HTTP 401) … invalid_client, the public pair has been rotated — request your own sandbox keys from the CDEK integration dashboard (lk.cdek.ru → Integration → API Keys).

Authentication

OAuth 2.0 Client Credentials flow, handled by the OAuthStrategy in @theyahia/mcp-core:

  • Automatic token acquisition on first request
  • Token caching with proactive refresh shortly before expiry
  • Concurrent request deduplication (a single in-flight token refresh is shared)
  • Automatic retry on 401 with token invalidation

E-commerce Stack

Pair with other russian-mcp servers for a complete e-commerce AI stack:

ServerPurpose
cdek-mcpShipping & logistics
dadata-mcpAddress validation, company lookup

Part of the russian-mcp series.

Demo Prompts

  1. "How much does it cost to ship a 2kg parcel from Moscow to Saint Petersburg?" Uses get_cities to find city codes, then calculate_tariff_list to compare all available tariffs.

  2. "Find the nearest CDEK pickup point to Red Square" Uses get_cities to resolve the Moscow city_code, then list_delivery_points with latitude: 55.7539, longitude: 37.6208, radius_km: 5 — results are filtered to the radius and sorted by distance (each annotated with координаты and расстояние_км).

  3. "Create an order to send a book from Kazan to Novosibirsk, schedule courier pickup, and print the receipt" Uses create_order, then create_courier_pickup to schedule collection, and print_receipt for the waybill.

Development

git clone https://github.com/theYahia/cdek-mcp.git
cd cdek-mcp
npm install

npm run lint        # ESLint (flat config)
npm run typecheck   # tsc --noEmit
npm run build       # emit dist/
npm test            # unit tests (vitest)
npm run test:e2e    # e2e smoke test (lists tools, no real credentials)

Run the server locally against the CDEK sandbox (api.edu.cdek.ru) — use the shared test pair from Sandbox Mode or your own sandbox keys:

CDEK_SANDBOX=true \
CDEK_CLIENT_ID=<YOUR_SANDBOX_CLIENT_ID> \
CDEK_CLIENT_SECRET=<YOUR_SANDBOX_CLIENT_SECRET> \
npm run dev

See CHANGELOG.md for release notes.

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 →
Categories
Finance & Commerce
Registryactive
Package@theyahia/cdek-mcp
TransportSTDIO
UpdatedMay 1, 2026
View on GitHub

More from theyahia

  • gigachat-mcp
  • mango-office-mcp
  • yandexgpt-mcp
  • Kaiten Mcp1
  • Megaplan Mcp1
  • Planfix Mcp1
  • Salutespeech Mcp1
  • Tilda Mcp1
  • Amocrm Mcp
  • Bitrix24 Mcp
  • Boxberry Mcp
  • Calltouch Mcp
  • Cbr Mcp
  • Cloudpayments Mcp
  • Dadata Mcp
  • Delovye Linii Mcp
  • Hh Mcp
  • Huntflow Mcp
  • Kontur Focus Mcp
  • Robokassa Mcp
  • Roistat Mcp
  • Sendpulse Mcp
  • Sms Ru Mcp
  • Superjob Mcp

Related Finance & Commerce MCP Servers

View all →
theyahia avatar
Tkassa Mcp

theyahia/tkassa-mcp

MCP server for T-Kassa (T-Bank/Tinkoff) payment API — payments, refunds. 5 tools. First MCP for T-K
thibault avatar
EcomGraph

thibault/ecomgraph

**Independent Shopify app discovery for AI agents.** Search, compare, and pull metadata for 8,000+ ecommerce apps from the EcomGraph catalog. ## Tools - `search_apps` — full-text search with optional category filter - `get_app` — full app record (pricing, ratings, reviews, FAQ) - `list_categories` — 3-level taxonomy - `list_best_in_category` — top-ranked apps in a category - `compare_apps` — side-by-side comparison (2–5 apps) - `list_developer_apps` — all apps published by a developer Every response includes a `source_url` linking back to ecomgraph.com. No auth required. Free to use. Learn more at https://ecomgraph.com/mcp.
thrivestack-public avatar
ThriveStack PLG CRM

thrivestack-public/thrivestack-mcp

ThriveStack PLG CRM analytics — query accounts, MAU/MTU, feature adoption, and PLG leads.
tooloracle avatar
Quantum

tooloracle/quantum

QuantumOracle — 18 post-quantum crypto tools: Kyber, Dilithium, hybrid schemes, migration.
tooloracle avatar
Shoporacle

tooloracle/shoporacle

E-Commerce Intelligence MCP — 11 tools: price comparison, stock, reviews. 18 countries.
tooloracle avatar
Solanaoracle

tooloracle/solanaoracle

SolanaOracle - 12 Solana tools: SPL tokens, Jupiter, validators, rent, programs, NFTs.