Skip to content
VS Code

Yango Delivery MCP for VS Code

io.github.a1-x-tech/mcp-yango-delivery

MCP server for the Yango Delivery claims B2B API: price checks, delivery claims, courier tracking.

client:VS Code transport:stdio runtime:npm

Install Yango Delivery MCP in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "yango-delivery-token",
      "description": "YANGO_DELIVERY_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "yango-delivery-base-url",
      "description": "YANGO_DELIVERY_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "yango-delivery-lang",
      "description": "YANGO_DELIVERY_LANG",
      "password": true
    },
    {
      "type": "promptString",
      "id": "yango-delivery-timeout-ms",
      "description": "YANGO_DELIVERY_TIMEOUT_MS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "yango-delivery-max-retries",
      "description": "YANGO_DELIVERY_MAX_RETRIES",
      "password": true
    }
  ],
  "servers": {
    "mcp-yango-delivery": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "mcp-yango-delivery"
      ],
      "env": {
        "YANGO_DELIVERY_TOKEN": "${input:yango-delivery-token}",
        "YANGO_DELIVERY_BASE_URL": "${input:yango-delivery-base-url}",
        "YANGO_DELIVERY_LANG": "${input:yango-delivery-lang}",
        "YANGO_DELIVERY_TIMEOUT_MS": "${input:yango-delivery-timeout-ms}",
        "YANGO_DELIVERY_MAX_RETRIES": "${input:yango-delivery-max-retries}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

Yango Delivery MCP in other clients