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 (1 strong, 1 medium validity signals). No known CVEs in dependencies. Package registry verified. Imported from the Official MCP Registry. Trust signals: trusted author (17/17 approved).

5 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.

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

English | Русский

npm CI Glama License: MIT

A1 Yango Delivery MCP connects an AI app to a corporate Yango Delivery account. Estimate an express delivery, order a courier, track the route and share a tracking link with the recipient using ordinary language.

This server works with the international Express Claims API. It does not support next-day delivery, pickup points or parcel lockers.

  • 13 tools. Seven for the delivery lifecycle, five for tracking and courier contact, plus one direct API request tool.
  • Estimate before ordering. Check the current price, route distance and ETA without creating a delivery claim.
  • Create and order separately. A claim can be prepared and reviewed before courier search starts.
  • Follow an active delivery. Get its status, courier position, point ETAs, temporary phone number, confirmation code and recipient tracking link.

Start with:

Estimate delivery of a 2 kg parcel from [pickup address] to [delivery address].

Connect the server · Explore use cases · Open technical documentation


See it work in a minute

You: Estimate delivery of a 2 kg parcel from our warehouse to the customer's address.

Assistant: I returned the current price, route distance and ETA. No delivery claim was created.

You: Create the claim and stop before ordering the courier.

Assistant: The claim has been created. I will show its id, price, status and version before acceptance.

You: Accept the offer.

Assistant: The claim has been accepted and courier search has started.

You: Send me the recipient's tracking link.

Assistant: I returned the public tracking link for the destination.

Price, availability, status and cancellation terms always come from the connected delivery account and the current API response.

Contents

Quick start

You need Node.js 20+, a Yango Delivery corporate account and an integration token.

  1. Get an integration token.

  2. Add the server to your AI app using one of the instructions below.

  3. Start with a price estimate:

    Estimate delivery of a 2 kg parcel from [pickup address] to [delivery address].

In the app:

  1. Open Settings → MCP servers.

  2. Select Add server.

  3. Choose STDIO, then enter the launch command npx -y mcp-yango-delivery@latest and the YANGO_DELIVERY_TOKEN environment variable with your token.

  4. Select Save, then Restart.

From the command line:

codex mcp add yango-delivery \
  --env YANGO_DELIVERY_TOKEN=your_token \
  -- npx -y mcp-yango-delivery@latest

Check the connection:

codex mcp list

Codex MCP documentation

claude mcp add \
  --env YANGO_DELIVERY_TOKEN=your_token \
  --transport stdio \
  --scope user \
  yango-delivery \
  -- npx -y mcp-yango-delivery@latest

Check the connection:

claude mcp list

Claude Code MCP documentation

The current official path is Settings → Extensions. For a custom desktop extension, open Advanced settings → Extension Developer → Install Extension…, select a .mcpb file and follow the prompts.

This repository currently publishes an npm stdio package and does not contain a .mcpb bundle. For Claude Desktop builds that still support local configuration, use the following JSON stdio configuration as a fallback:

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

In those builds, save it to ~/Library/Application Support/Claude/claude_desktop_config.json on macOS or %APPDATA%\Claude\claude_desktop_config.json on Windows.

Claude Desktop MCP documentation

Add a user-level server to ~/.cursor/mcp.json on macOS/Linux or %USERPROFILE%\.cursor\mcp.json on Windows:

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

Cursor MCP documentation

Run MCP: Open User Configuration from the Command Palette and add:

{
  "servers": {
    "yango-delivery": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "mcp-yango-delivery@latest"],
      "env": {
        "YANGO_DELIVERY_TOKEN": "${input:yango_delivery_token}"
      }
    }
  },
  "inputs": [
    {
      "type": "promptString",
      "id": "yango_delivery_token",
      "description": "Yango Delivery integration token",
      "password": true
    }
  ]
}

Check the server with MCP: List Servers.

VS Code MCP documentation

What you can ask it to do

Estimate an express delivery

  • Calculate the current price, route distance and ETA without creating a claim.
  • Estimate courier, express or cargo service for the supplied addresses, weight and dimensions.
  • Check whether the API can build the route and satisfy the requested vehicle or delivery requirements.

Prepare and order a courier

  • Create a claim with sender and recipient contacts, route points, items and delivery requirements.
  • Review the returned price, status and claim version before ordering.
  • Accept a claim after successful estimation and start courier search.
  • Find a claim by id, phone number, status, date or external order id.

Track the delivery and contact the courier

  • Get the current courier position and ETA for each route point.
  • Generate a public tracking link for the recipient.
  • Get a temporary forwarded phone number for the courier.
  • Get a pickup or delivery confirmation code when the current claim supports one.

Check and cancel a delivery

  • Check whether cancellation is free, paid or no longer available.
  • Cancel a claim using its current version and the cancellation mode returned by the API.

Use additional API methods

raw_request covers methods without a dedicated tool, including tariffs, delivery methods, proof of delivery, claim editing and return operations. It can create or change real data, so it is intended for technical users who understand the upstream API.

Complete schemas, response fields and status details are available in the tool reference.

How a delivery becomes real

  1. Estimate. A price check returns the current offer, distance and ETA without creating anything.
  2. Create. A claim is added to the account and moves through estimation. By default, no courier is ordered yet.
  3. Review. Read the latest claim status, price and version. A successful claim becomes ready for approval.
  4. Accept. Acceptance starts courier search. From this point, the delivery is ordered and can lead to a real charge.
  5. Track. Once a courier is assigned, the server can return the position, ETA, contact details and recipient link.

The priced offer usually expires about ten minutes after estimation. If auto_accept: true is passed when creating a claim, the separate review and acceptance step is skipped and the courier can be ordered automatically.

What changes in the account

The server exposes MCP annotations for reading, writing and destructive actions. The AI client decides when and how to ask for confirmation.

ActionResultChanges the account
Price estimateReturns the current price, distance and ETANo
Read, search and tracking toolsReturns claim, courier and cancellation informationNo
Create a claimAdds a real claim, but does not order a courier by defaultYes
Accept a claimStarts courier search and can lead to a chargeYes
Cancel a claimCancels the delivery; a cancellation fee may applyYes
raw_requestCalls another API method, including possible writesDepends on the method

Claim creation uses a unique request_id, so repeating it with the same id returns the same claim. Acceptance and cancellation are not automatically repeated after a network error or a 5xx response because the operation may already have succeeded. Read the current claim before trying again.

Getting access

  1. Register as a corporate Yango Delivery client and sign the delivery-service contract.
  2. Open the Integration tab in the delivery account.
  3. Select Get token.
  4. Add the token to the AI client as YANGO_DELIVERY_TOKEN.

The token is tied to the corporate account. It does not expire by itself, but changing the account password resets it.

The integration token is stored as plain text in the AI client's local configuration. Treat it like a password and never commit a configuration containing a real token.

Configuration

VariableRequiredDefaultDescription
YANGO_DELIVERY_TOKENyesBearer token from the delivery account
YANGO_DELIVERY_BASE_URLnohttps://b2b.taxi.yandex.netAPI root override
YANGO_DELIVERY_LANGnoenValue of the Accept-Language header
YANGO_DELIVERY_TIMEOUT_MSno60000Timeout for one request, in milliseconds
YANGO_DELIVERY_MAX_RETRIESno3Maximum retries for temporary failures; writes are not replayed unless they are idempotent
ASKADS_TELEMETRYnoenabled0, false, off or no disables anonymous telemetry

Data and telemetry

Requests to Yango Delivery

The server runs on your machine and sends claim data directly to b2b.taxi.yandex.net. The integration token is attached only to requests to the configured API host. Even raw_request accepts a relative path and blocks requests that resolve to another host.

Anonymous telemetry

By default, the server sends technical events to usage.gistrec.cloud: server start, called tool name and a fixed reason code when startup fails.

Events contain a random installation id, package version, AI client name and version, Node.js version and operating system. The integration token, claim data, tool arguments and prompts are not read or sent. Telemetry has a two-second timeout and does not block a tool call.

To disable telemetry, add:

ASKADS_TELEMETRY=0

The implementation is in src/telemetry.ts.

Limits and background work

  • There is no documented sandbox. Treat claim creation and acceptance as production operations.
  • The offer is time-limited. The priced offer usually expires about ten minutes after estimation; read the current claim before acceptance.
  • Tracking requires an active claim. Position, ETA, contact details and tracking links may be unavailable until a courier is assigned or after the claim is completed.
  • Numeric API quotas are not published. When the API returns 429, the server follows Retry-After when present and retries up to YANGO_DELIVERY_MAX_RETRIES.
  • There is no background monitoring. The server works only when called from the AI app. If the app supports scheduled tasks, it can check an active claim periodically.
  • There is no automatic rollback. After an uncertain acceptance or cancellation result, read the claim before repeating the action.

Technical documentation

Support

Found a bug or missing a use case? Create an issue or message us on Telegram.

Reviews

No reviews yet

Be the first to review this server!