mcp-yango-delivery
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mcp-yango-deliveryEstimate delivery cost for a 2kg parcel to Amir Timur Ave 107"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Yango Delivery MCP
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
Get a token in your delivery personal account.
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-deliveryAsk the assistant: "How much would it cost to deliver a 2 kg parcel from our office to Amir Timur Avenue 107?"
Related MCP server: delovye-linii-mcp
What it can do
Claim lifecycle:
Price estimation —
check_price: price, distance and ETA without creating a claim.Claims —
create_claim(create, with an idempotentrequest_id),accept_claim(confirm and start the courier search),get_claim(status, courier, pricing),search_claims(filtered search with pagination).Cancellation —
get_cancel_info(free / paid / unavailable) andcancel_claim.
Tracking & contact:
Courier tracking —
get_performer_position(live geoposition),get_points_eta(expected arrival per route point) andget_tracking_links(public links for the recipient).Contact —
get_courier_phone(temporary forwarded number) andget_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:
Item | Value |
Base URL |
|
Path prefix |
|
Auth |
|
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/calculatepricing 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-deliveryclaude_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
Register as a corporate client of the delivery service and sign the contract (log in with the credentials provided by your manager).
In the personal account, open the Integration tab and press "Get token".
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
Variable | Required | Default | Description |
| yes | — | OAuth Bearer token from the delivery cabinet. |
| no |
| API root override. |
| no |
|
|
| no |
| Per-request timeout, ms. |
| no |
| Retries 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_claimreally order a delivery and lead to charges; cancelling an accepted claim can be paid (checkget_cancel_infofirst).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
All tools — the full list with descriptions.
Development — build, tests, smoke check.
Publishing — releasing and listing in MCP catalogs.
API reference — the upstream method list.
Support
Questions, ideas and contributions — message on Telegram: @gistrec.
License
MIT — see LICENSE.
Maintenance
Related MCP Servers
- AlicenseDqualityDmaintenanceMCP server for Yandex Delivery API, allowing AI assistants to manage deliveries, track couriers, and handle orders.21MIT
- AlicenseBqualityDmaintenanceAn MCP server for the Delovye Linii logistics API, enabling cargo delivery cost calculation, order creation, tracking, and directory lookups for cities and terminals.625MIT
- AlicenseAqualityDmaintenanceMCP server for Yandex GPT API enabling text generation, embeddings, classification, summarization, and tokenization.829MIT
- AlicenseAqualityCmaintenanceMCP server for Yandex Eats Vendor Management API, enabling AI agents to manage partner operations like orders, busy mode, menu import, and feedback.11141MIT
Related MCP Connectors
A paid remote MCP for ShipSwift, built to return verdicts, receipts, usage logs, and audit-ready JSO
MCP (Model Context Protocol) server for Appwrite
Hosted MCP server for LLM cost estimation, model comparison, and budget-aware routing.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/A1-x-Tech/mcp-yango-delivery'
If you have feedback or need assistance with the MCP directory API, please join our Discord server