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: Accept a claim — MCP tool

Yango Delivery MCP tool: Confirms a claim after successful estimation (status ready_for_approval) and starts the courier search — from this point the delivery is actually ordered.

Technical name: accept_claim

What task it solves

I want to accept a claim.

Confirms a claim after successful estimation (status ready_for_approval) and starts the courier search — from this point the delivery is actually ordered.

When to use it

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

What to provide

  • claim_idrequired. Claim id (claim_id, 32–64 characters) from the create_claim or search_claims response.
  • versionrequired. Claim version from the latest get_claim response.

What it returns

Returns compact JSON from the upstream API or a clear MCP tool error. The exact fields depend on the operation and are documented in the technical reference.

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

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

Errors and limitations

The priced offer inside a claim expires ~10 minutes after estimation, so accept promptly. version comes from get_claim. 409 errors: inappropriate_status (wrong claim status), old_version (stale version — re-read the claim), offer_expired (re-create the claim), state_mismatch.

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

Related MCP tools

Technical details