# cdek-mcp (npm · @theyahia/cdek-mcp)

MCP server for CDEK — delivery, tariffs, tracking, order management (Russia)

- Trust score: 64/100 (medium)
- Change this week: +18
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- npm · `@theyahia/cdek-mcp`: 64/100 (this document), [markdown](https://verifymcp.io/servers/theyahia-cdek-mcp/theyahia-cdek-mcp.md), [page](https://verifymcp.io/servers/theyahia-cdek-mcp/theyahia-cdek-mcp)

## Channel facts

- Registry: `npm`
- Package: `@theyahia/cdek-mcp`
- Version: `2.0.2`
- Transport: `stdio`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Supply Chain Security**: 87/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (95 of 96), so this covers what we could see, not the whole tree.
  - No install/post-install scripts declared.
  - Only part of the dependency tree could be resolved (95 of 96), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 45/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 40 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 71/100
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 1217 tokens (~86/item across 14 items; 14 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 0/100
  - Stability not yet verified: not enough scan history yet (needs a 30-day window).
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

**Unverified: 1 category.** A category scored 0 because we could not verify it: a data source with nothing on this package, evidence we could not reach, or a check we could not run. We only credit what we can confirm.

## Install

### Claude

```bash
claude mcp add theyahia-cdek-mcp -- npx -y @theyahia/cdek-mcp
```

### Codex

```bash
codex mcp add theyahia-cdek-mcp -- npx -y @theyahia/cdek-mcp
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "theyahia-cdek-mcp": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "@theyahia/cdek-mcp"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add theyahia-cdek-mcp --command npx --arg -y --arg @theyahia/cdek-mcp
```

### Hermes

```yaml
mcp_servers:
  theyahia-cdek-mcp:
    command: "npx"
    args: ["-y", "@theyahia/cdek-mcp"]
```

### Other

```json
{
  "mcpServers": {
    "theyahia-cdek-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@theyahia/cdek-mcp"
      ]
    }
  }
}
```

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-02 (score 64, +38)

- [security regression] Provenance: unverified → fail
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Install scripts: unverified → pass
- [security improvement] Malware scan: unverified → pass
- [security] Stability: Stability not yet verified: we do not have a sandbox capture of the MCP schema this version of the package serves yet.
- [functional regression] Capabilities: pass → unverified
- [functional regression] Tool coverage: 100 → unverified
- [functional improvement] Schema quality: unverified → good
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] License: unverified → pass
- [functional] Licence: MIT

### 2026-08-01 (score 26, +21)

- [security] Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window).
- [functional improvement] MCP protocol: unverified → pass
- [functional improvement] Tool coverage: unverified → 100

### 2026-07-31 (score 5, −23)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-30 (score 28, +4)

- [security regression] Malware scan: pass → unverified
- [functional improvement] Tool coverage: unverified → 100

### 2026-07-28 (score 24, −22)

- [functional regression] Tool coverage: 100 → unverified
- [functional] First check of Schema quality: unverified

### 2026-07-27 (score 46)

First indexed and scored.

## MCP tools (14)

### `calculate_tariff` (~135 tokens)

Calculate CDEK delivery cost and time for a specific tariff, route, and package dimensions.

Input parameters:

- `from_location` (object, required): Место отправления (code или postal_code обязательно)
- `packages` (array, required): Список мест (минимум 1)
- `tariff_code` (number, required): Код тарифа СДЭК (например 136=посылка склад-склад, 137=склад-дверь, 138=дверь-склад, 139=дверь-дверь)
- `to_location` (object, required): Место назначения (code или postal_code обязательно)

### `calculate_tariff_list` (~112 tokens)

Get all available CDEK tariffs with prices for a route and package. Returns a comparison list.

Input parameters:

- `currency` (number): Код валюты (1=RUB, 2=KZT, 3=USD, 4=EUR)
- `from_location` (object, required): Место отправления (code или postal_code обязательно)
- `packages` (array, required): Список мест (минимум 1)
- `to_location` (object, required): Место назначения (code или postal_code обязательно)

### `create_order` (~97 tokens)

Create a CDEK delivery order with sender, recipient, packages, and tariff.

Input parameters:

- `comment` (string): Комментарий к заказу
- `from_location` (object, required): Место отправления
- `packages` (array, required): Список мест
- `recipient` (object, required): Данные получателя
- `tariff_code` (number, required): Код тарифа СДЭК
- `to_location` (object, required): Место назначения

### `get_order` (~32 tokens)

Get CDEK order details and status by UUID.

Input parameters:

- `uuid` (string, required): UUID заказа СДЭК

### `delete_order` (~42 tokens)

Delete/cancel a CDEK order by UUID. Only works before the order is processed.

Input parameters:

- `uuid` (string, required): UUID заказа СДЭК для удаления

### `track_shipment` (~49 tokens)

Track a CDEK shipment by waybill number. Returns full status history.

Input parameters:

- `cdek_number` (string, required): Номер отправления СДЭК (например 1234567890)

### `get_cities` (~117 tokens)

Search CDEK city directory by name, postal code, or country.

Input parameters:

- `city` (string): Название города (поиск по подстроке)
- `code` (number): Код города СДЭК
- `country_codes` (string): Коды стран через запятую (например RU,KZ)
- `page` (integer): Номер страницы (с 0)
- `postal_code` (string): Почтовый индекс
- `size` (integer): Количество результатов (по умолчанию 50)

### `get_regions` (~81 tokens)

Search CDEK region directory by country or region name.

Input parameters:

- `country_codes` (string): Коды стран через запятую (например RU,KZ)
- `page` (integer): Номер страницы (с 0)
- `region` (string): Название региона (поиск по подстроке)
- `size` (integer): Количество результатов

### `list_delivery_points` (~170 tokens)

Find CDEK pickup points and parcel lockers by city, postal code, or GPS coordinates.

Input parameters:

- `city_code` (number): Код города СДЭК
- `country_code` (string): Код страны (по умолчанию RU)
- `latitude` (number): Широта для поиска ближайших
- `longitude` (number): Долгота для поиска ближайших
- `page` (integer): Номер страницы (с 0)
- `postal_code` (string): Почтовый индекс
- `radius` (number): Радиус поиска в км (работает с lat/lng)
- `size` (integer): Количество результатов
- `type` (string): Тип пункта: PVZ (пункт выдачи), POSTAMAT (постамат), ALL

### `generate_barcode` (~86 tokens)

Generate a barcode/label for a CDEK order by UUID.

Input parameters:

- `copy_count` (integer): Количество копий (1-10, по умолчанию 1)
- `format` (string): Формат печати (A4, A5, A6)
- `uuid` (string, required): UUID заказа СДЭК для генерации штрихкода

### `create_courier_pickup` (~132 tokens)

Schedule a CDEK courier pickup for an order. Specify date and time window.

Input parameters:

- `comment` (string): Комментарий для курьера
- `intake_date` (string, required): Дата забора (YYYY-MM-DD)
- `intake_time_from` (string, required): Время забора с (HH:MM)
- `intake_time_to` (string, required): Время забора до (HH:MM)
- `name` (string): ФИО отправителя
- `order_uuid` (string, required): UUID заказа для вызова курьера
- `phone` (string): Телефон отправителя

### `get_courier_pickup` (~34 tokens)

Get courier pickup request status by UUID.

Input parameters:

- `uuid` (string, required): UUID заявки на вызов курьера

### `print_receipt` (~60 tokens)

Generate a receipt/waybill PDF for a CDEK order. Returns a download URL.

Input parameters:

- `copy_count` (integer): Количество копий (1-10)
- `order_uuid` (string, required): UUID заказа для печати квитанции

### `create_webhook` (~70 tokens)

Register a webhook URL to receive CDEK order status updates or delivery photos.

Input parameters:

- `type` (string, required): Тип вебхука: ORDER_STATUS (статусы заказов) или DOWNLOAD_PHOTO (фото при получении)
- `url` (string, required): URL для получения уведомлений (HTTPS)

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/theyahia-cdek-mcp/theyahia-cdek-mcp#diagnostics

## Score history

- 2026-08-03: 64
- 2026-08-02: 64
- 2026-08-01: 26
- 2026-07-31: 5
- 2026-07-30: 28
- 2026-07-28: 24
- 2026-07-27: 46

## Links

- npm package: https://www.npmjs.com/package/@theyahia/cdek-mcp
- Socket report: https://socket.dev/npm/package/@theyahia/cdek-mcp
- Repository: https://github.com/theYahia/cdek-mcp
- Changelog RSS feed: https://verifymcp.io/servers/theyahia-cdek-mcp/theyahia-cdek-mcp/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/theyahia-cdek-mcp/theyahia-cdek-mcp/changelog.json
- HTML version of this page: https://verifymcp.io/servers/theyahia-cdek-mcp/theyahia-cdek-mcp
