Skip to main content
ClaudeWave
A1-x-Tech avatar
A1-x-Tech

mcp-yango-delivery

Ver en GitHub

MCP server for Yango Delivery’s B2B Express Claims API — quote, book and track courier deliveries from an AI app

MCP ServersRegistry oficial0 estrellas0 forksTypeScriptMITActualizado today
ClaudeWave Trust Score
95/100
Verified
Passed
  • Open-source license (MIT)
  • Actively maintained (<30d)
  • Clear description
  • Topics declared
  • Documented (README)
Last scanned: 8/19/2026
Install in Claude Code / Claude Desktop
Method: NPX · mcp-yango-delivery
Claude Code CLI
claude mcp add mcp-yango-delivery -- npx -y mcp-yango-delivery
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "mcp-yango-delivery": {
      "command": "npx",
      "args": ["-y", "mcp-yango-delivery"],
      "env": {
        "YANGO_DELIVERY_TOKEN": "<yango_delivery_token>"
      }
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
Detected environment variables
YANGO_DELIVERY_TOKEN
Casos de uso

Resumen de MCP Servers

# <img src="./assets/a1-logo.svg" alt="A1" width="40"> Yango Delivery MCP

**English** | [Русский](./README.ru.md)

[![npm](https://img.shields.io/npm/v/mcp-yango-delivery)](https://www.npmjs.com/package/mcp-yango-delivery)
[![CI](https://github.com/A1-x-Tech/mcp-yango-delivery/actions/workflows/ci.yml/badge.svg)](https://github.com/A1-x-Tech/mcp-yango-delivery/actions/workflows/ci.yml)
[![Glama](https://glama.ai/mcp/servers/A1-x-Tech/mcp-yango-delivery/badges/score.svg)](https://glama.ai/mcp/servers/A1-x-Tech/mcp-yango-delivery)
[![License: MIT](https://img.shields.io/badge/license-MIT-blue.svg)](./LICENSE)

**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](#quick-start) · [Explore use cases](#what-you-can-ask-it-to-do) · [Open technical documentation](#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](#quick-start)
- [What you can ask it to do](#what-you-can-ask-it-to-do)
- [How a delivery becomes real](#how-a-delivery-becomes-real)
- [What changes in the account](#what-changes-in-the-account)
- [Getting access](#getting-access)
- [Configuration](#configuration)
- [Data and telemetry](#data-and-telemetry)
- [Limits and background work](#limits-and-background-work)
- [Technical documentation](#technical-documentation)
- [Support](#support)

## Quick start

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

1. [Get an integration token](#getting-access).
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].

<details open>
<summary><strong>Codex</strong></summary>

<br>

**In the app:**

1. Open **Settings → Plugins → MCP servers**.
2. Select **Add server**.
3. Add the launch command `npx -y mcp-yango-delivery@latest` and the `YANGO_DELIVERY_TOKEN` environment variable with your token.

**From the command line:**

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

Check the connection:

```bash
codex mcp list
```

[Codex MCP documentation](https://learn.chatgpt.com/docs/extend/mcp?surface=cli)

</details>

<details>
<summary><strong>Claude Code</strong></summary>

<br>

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

Check the connection:

```bash
claude mcp list
```

[Claude Code MCP documentation](https://code.claude.com/docs/en/mcp)

</details>

<details>
<summary><strong>Claude Desktop</strong></summary>

<br>

1. Open Claude Desktop and go to **Settings → Developer**.
2. Select **Edit Config**.
3. Add the server to `mcpServers`:

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

If **Edit Config** is unavailable, open the configuration file directly:

- macOS: `~/Library/Application Support/Claude/claude_desktop_config.json`
- Windows: `%APPDATA%\Claude\claude_desktop_config.json`

[Claude Desktop MCP documentation](https://claude.com/docs/connectors/building/mcp-apps/getting-started)

</details>

<details>
<summary><strong>Cursor</strong></summary>

<br>

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

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

[Cursor MCP documentation](https://cursor.com/docs/mcp)

</details>

<details>
<summary><strong>VS Code</strong></summary>

<br>

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

```json
{
  "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](https://code.visualstudio.com/docs/agent-customization/mcp-servers)

</details>

## 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](docs/TOOLS.md).

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

| Action | Result | Changes the account |
|---|---|---:|
| Price estimate | Returns the current price, distance and ETA | No |
| Read, search and tracking tools | Returns claim, courier and cancellation information | No |
| Create a claim | Adds a real claim, but does not order a courier by default | Yes |
| Accept a claim | Starts courier search and can lead to a charge | Yes |
| Cancel a claim | Cancels the delivery; a cancellation fee may apply | Yes |
| `raw_request` | Calls another API method, including possible writes | Depends 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 store
aiclaudecodexcursordeliverylogisticsmcpmodel-context-protocolyangoyango-delivery

Lo que la gente pregunta sobre mcp-yango-delivery

¿Qué es A1-x-Tech/mcp-yango-delivery?

+

A1-x-Tech/mcp-yango-delivery es mcp servers para el ecosistema de Claude AI. MCP server for Yango Delivery’s B2B Express Claims API — quote, book and track courier deliveries from an AI app Tiene 0 estrellas en GitHub y su última actualización registrada es del 2026-08-18.

¿Cómo se instala mcp-yango-delivery?

+

Puedes instalar mcp-yango-delivery clonando el repositorio (https://github.com/A1-x-Tech/mcp-yango-delivery) o siguiendo las instrucciones del README en GitHub. ClaudeWave también te ofrece bloques de instalación rápida en esta misma página.

¿Es seguro usar A1-x-Tech/mcp-yango-delivery?

+

Nuestro agente de seguridad ha analizado A1-x-Tech/mcp-yango-delivery y le ha asignado un Trust Score de 95/100 (tier: Verified). Revisa el desglose completo de comprobaciones superadas y flags en esta página.

¿Quién mantiene A1-x-Tech/mcp-yango-delivery?

+

A1-x-Tech/mcp-yango-delivery es mantenido por A1-x-Tech. La última actividad registrada en GitHub es del 2026-08-18, con 0 issues abiertos.

¿Hay alternativas a mcp-yango-delivery?

+

Sí. En ClaudeWave puedes explorar mcp servers similares en /categories/mcp, ordenados por popularidad o actividad reciente.

Despliega mcp-yango-delivery en tu cloud

Lleva este repo a producción en minutos. Cada plataforma genera su propio entorno con variables de entorno editables.

¿Mantienes este repo? Añade un badge a tu README

Pega el badge en tu README de GitHub para mostrar que está auditado por ClaudeWave. Cada badge enlaza de vuelta a esta página y muestra el Trust Score actual.

Featured on ClaudeWave: A1-x-Tech/mcp-yango-delivery
[![Featured on ClaudeWave](https://claudewave.com/api/badge/a1-x-tech-mcp-yango-delivery)](https://claudewave.com/repo/a1-x-tech-mcp-yango-delivery)
<a href="https://claudewave.com/repo/a1-x-tech-mcp-yango-delivery"><img src="https://claudewave.com/api/badge/a1-x-tech-mcp-yango-delivery" alt="Featured on ClaudeWave: A1-x-Tech/mcp-yango-delivery" width="320" height="64" /></a>

Más MCP Servers

Alternativas a mcp-yango-delivery