Skip to content
VS Code

Yango Tech Retail MCP for VS Code

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

MCP server for the Yango Tech Retail B2B API: orders, products, prices, discounts, stocks.

client:VS Code transport:stdio runtime:npm

Install Yango Tech Retail MCP in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "yango-retail-token",
      "description": "YANGO_RETAIL_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "yango-retail-api-base-url",
      "description": "YANGO_RETAIL_API_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "yango-retail-timeout-ms",
      "description": "YANGO_RETAIL_TIMEOUT_MS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "yango-retail-max-retries",
      "description": "YANGO_RETAIL_MAX_RETRIES",
      "password": true
    }
  ],
  "servers": {
    "mcp-yango-retail": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "mcp-yango-retail"
      ],
      "env": {
        "YANGO_RETAIL_TOKEN": "${input:yango-retail-token}",
        "YANGO_RETAIL_API_BASE_URL": "${input:yango-retail-api-base-url}",
        "YANGO_RETAIL_TIMEOUT_MS": "${input:yango-retail-timeout-ms}",
        "YANGO_RETAIL_MAX_RETRIES": "${input:yango-retail-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 Tech Retail MCP in other clients