Connect the Yango Delivery MCP server to your AI agent Open source, MIT, on npm. Setup instructions for Claude, Cursor and Codex are in the repository; adoption questions — Telegram. GitHub repository Telegram

Yango Delivery: Create a delivery claim — MCP tool

Yango Delivery MCP tool: Creates a delivery claim.

Technical name: create_claim

What task it solves

I want to create a delivery claim.

Creates a delivery claim.

When to use it

Use this capability when you need “Create a delivery claim” without doing the same work manually in the Yango Delivery interface. It runs only when an AI client calls it.

What to provide

  • request_idoptional. Idempotency token (1–128 characters, a query parameter). A UUID is generated automatically when omitted.
  • itemsrequired. Items to deliver.
  • route_pointsrequired. Route points (at least 2): a source and a destination at minimum.
  • client_requirementsoptional. Delivery requirements. Optional per the docs, but always passing taxi_class is safest.
  • emergency_contactoptional. Contact to reach if there is a problem with the delivery.
  • callback_propertiesoptional. Webhook for claim status changes.
  • dueoptional. Desired courier arrival time (ISO-8601), e.g. 2026-08-10T12:00:00+05:00.
  • commentoptional. Comment for the courier (up to 7000 characters).
  • shipping_documentoptional. Accompanying shipping document reference.
  • skip_door_to_dooroptional. true — no door-to-door: hand over at the entrance.
  • skip_client_notifyoptional. true — do not send SMS/push notifications to the recipient.
  • skip_emergency_notifyoptional. true — do not notify the emergency contact.
  • skip_actoptional. true — do not generate a handover act.
  • optional_returnoptional. true — the courier does not return items to the sender when hand-over fails.
  • same_day_dataoptional. Same-day delivery settings: {delivery_interval: {from, to}} (a non-Russia feature).
  • auto_acceptoptional. true — confirm the claim automatically after successful estimation (no accept_claim needed).

What it returns

Returns id (claim_id), status, version, route_points, pricing, created_ts.

What changes in Yango Delivery

The tool changes real Yango Delivery data as described above. The server does not promise an automatic rollback.

Example request

Create a delivery claim in Yango Delivery. Ask for any required identifiers that are missing.

Errors and limitations

IMPORTANT: the claim is NOT dispatched immediately — it goes through estimation (status: new → estimating → ready_for_approval) and must then be confirmed with accept_claim, or pass auto_accept=true. Verify success via get_claim: estimation errors can arrive as an error_messages array inside a 200 response. request_id makes the call idempotent: a retry with the same request_id returns the same claim, not a duplicate.

Access also depends on token permissions, quotas, and upstream API limits.

Related MCP tools

Technical details