Back to Browse

Yango Delivery MCP Server

Developer ToolsLow Risk10.0MCP RegistryLocal
Free

Server data from the Official MCP Registry

MCP server for the Yango Delivery claims B2B API: price checks, delivery claims, courier tracking.

About

MCP server for the Yango Delivery claims B2B API: price checks, delivery claims, courier tracking.

Security Report

10.0
Low Risk10.0Low Risk

Valid MCP server (2 strong, 1 medium validity signals). No known CVEs in dependencies. Package registry verified. Imported from the Official MCP Registry. Trust signals: trusted author (3/3 approved).

6 files analyzed · 1 issue found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

HTTP Network Access

Connects to external APIs or services over the internet.

file_system

Check that this permission is expected for this type of plugin.

What You'll Need

Set these up before or after installing:

OAuth Bearer token from the delivery cabinet (Integration tab -> "Get token"). Treat it as a secret.Required

Environment variable: YANGO_DELIVERY_TOKEN

API root override.Optional

Environment variable: YANGO_DELIVERY_BASE_URL

Accept-Language header value (required by most claim methods).Optional

Environment variable: YANGO_DELIVERY_LANG

Per-request timeout in milliseconds.Optional

Environment variable: YANGO_DELIVERY_TIMEOUT_MS

Retries on transient errors (429 always; 5xx/network for idempotent calls only).Optional

Environment variable: YANGO_DELIVERY_MAX_RETRIES

How to Install

Add this to your MCP configuration file:

{
  "mcpServers": {
    "io-github-a1-x-tech-mcp-yango-delivery": {
      "env": {
        "YANGO_DELIVERY_LANG": "your-yango-delivery-lang-here",
        "YANGO_DELIVERY_TOKEN": "your-yango-delivery-token-here",
        "YANGO_DELIVERY_BASE_URL": "your-yango-delivery-base-url-here",
        "YANGO_DELIVERY_TIMEOUT_MS": "your-yango-delivery-timeout-ms-here",
        "YANGO_DELIVERY_MAX_RETRIES": "your-yango-delivery-max-retries-here"
      },
      "args": [
        "-y",
        "mcp-yango-delivery"
      ],
      "command": "npx"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

Yango Delivery MCP

npm CI License: MIT

MCP server for the Yango Delivery B2B API (the international brand of Yandex Delivery): estimate delivery prices, create and confirm express-courier claims, track the courier and share tracking links with recipients — from Claude, Cursor, Codex and other AI clients, in natural language.

The server covers the express (claims) contour of the API — same-day / on-demand courier delivery, the only contour documented for countries outside Russia. The assistant assembles the claim body, watches the statuses, checks the cancellation terms and hands the recipient a tracking link.

Quick start

  1. Get a token in your delivery personal account.

  2. Add the server — for example, in Claude Code (other clients):

    claude mcp add yango-delivery \
      -e YANGO_DELIVERY_TOKEN=your_token \
      -- npx -y mcp-yango-delivery
    
  3. Ask the assistant: "How much would it cost to deliver a 2 kg parcel from our office to Amir Timur Avenue 107?"

What it can do

Claim lifecycle:

  • Price estimationcheck_price: price, distance and ETA without creating a claim.
  • Claimscreate_claim (create, with an idempotent request_id), accept_claim (confirm and start the courier search), get_claim (status, courier, pricing), search_claims (filtered search with pagination).
  • Cancellationget_cancel_info (free / paid / unavailable) and cancel_claim.

Tracking & contact:

  • Courier trackingget_performer_position (live geoposition), get_points_eta (expected arrival per route point) and get_tracking_links (public links for the recipient).
  • Contactget_courier_phone (temporary forwarded number) and get_confirmation_code (pickup/delivery confirmation code).

Common:

  • Universal raw_request — a direct call to any API method (tariffs, delivery methods, proof of delivery, claim editing and other endpoints without a dedicated tool).
  • Resilience — retries on 429 with backoff (5xx/network only for reads and the idempotent claim creation), a request timeout and a guard against leaking the token to a foreign host.

Example prompts

Ask the assistant, for example:

  • "Estimate the courier delivery of a 3 kg box from our office to the client at Amir Timur Avenue 107"
  • "Create an express delivery claim for the flowers due at 18:00 and confirm it"
  • "Where is the courier for claim … right now? Give me a tracking link for the client"
  • "Get me the courier's phone number for the active claim"
  • "Cancel yesterday's claim — first check whether the cancellation is free"

API access

The server talks to the express (claims) contour of the delivery B2B API:

ItemValue
Base URLhttps://b2b.taxi.yandex.net (same host for all countries)
Path prefix/b2b/cargo/integration/v2/*
AuthAuthorization: Bearer <token>

The token is issued in the delivery personal account (Integration tab → "Get token") and never expires.

Note on branding. The English API documentation is published under the "Yandex Delivery" name on yandex.com and uses the same host for Russia and other countries; no separate Yango-branded API host is documented. The Russia-only parts of the API (the offers/calculate pricing method and the NDD/pickup-point contour) are not part of this server.

No sandbox. The express contour has no documented test environment — accepted claims order real couriers and lead to real charges.

Installation

claude mcp add yango-delivery \
  -e YANGO_DELIVERY_TOKEN=your_token \
  -- npx -y mcp-yango-delivery

claude_desktop_config.json — macOS ~/Library/Application Support/Claude/, Windows %APPDATA%\Claude\

{
  "mcpServers": {
    "yango-delivery": {
      "command": "npx",
      "args": ["-y", "mcp-yango-delivery"],
      "env": { "YANGO_DELIVERY_TOKEN": "your_token" }
    }
  }
}

~/.cursor/mcp.json (or .cursor/mcp.json in the project)

{
  "mcpServers": {
    "yango-delivery": {
      "command": "npx",
      "args": ["-y", "mcp-yango-delivery"],
      "env": { "YANGO_DELIVERY_TOKEN": "your_token" }
    }
  }
}

.vscode/mcp.json — note the servers key (not mcpServers)

{
  "servers": {
    "yango-delivery": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "mcp-yango-delivery"],
      "env": { "YANGO_DELIVERY_TOKEN": "your_token" }
    }
  }
}

Getting access

  1. Register as a corporate client of the delivery service and sign the contract (log in with the credentials provided by your manager).
  2. In the personal account, open the Integration tab and press "Get token".
  3. Put the token into YANGO_DELIVERY_TOKEN.

⚠️ The token is stored in plain text in the client config — treat it like a password. It never expires but is reset when the account password changes.

Configuration

VariableRequiredDefaultDescription
YANGO_DELIVERY_TOKENyesOAuth Bearer token from the delivery cabinet.
YANGO_DELIVERY_BASE_URLnohttps://b2b.taxi.yandex.netAPI root override.
YANGO_DELIVERY_LANGnoenAccept-Language header value.
YANGO_DELIVERY_TIMEOUT_MSno60000Per-request timeout, ms.
YANGO_DELIVERY_MAX_RETRIESno3Retries on 429 (and 5xx for reads).

Requirements

  • Node.js 20+ (runs via npx, no separate install needed).
  • A corporate-client delivery account with an integration token.

Limitations

  • This is NOT a read-only server. create_claim + accept_claim really order a delivery and lead to charges; cancelling an accepted claim can be paid (check get_cancel_info first).
  • Rate limits are not published — only HTTP 429 is known; the server retries it with backoff.
  • No test/sandbox environment is documented for this API.

Documentation

Support

Questions, ideas and contributions — message on Telegram: @gistrec.

License

MIT — see LICENSE.

Reviews

No reviews yet

Be the first to review this server!