Skip to content
VS Code

ozon mcp server for VS Code

io.github.deviceingineering/ozon-mcp-server

Ozon Seller & Performance API, 156 tools; responses trimmed 476k to 64k tokens.

client:VS Code transport:stdio runtime:pypi

Install ozon mcp server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "ozon-client-id",
      "description": "OZON_CLIENT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ozon-api-key",
      "description": "OZON_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ozon-perf-client-id",
      "description": "OZON_PERF_CLIENT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ozon-perf-client-secret",
      "description": "OZON_PERF_CLIENT_SECRET",
      "password": true
    },
    {
      "type": "promptString",
      "id": "data-dir",
      "description": "DATA_DIR",
      "password": true
    }
  ],
  "servers": {
    "ozon-mcp-server": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "ozon-mcp-server"
      ],
      "env": {
        "OZON_CLIENT_ID": "${input:ozon-client-id}",
        "OZON_API_KEY": "${input:ozon-api-key}",
        "OZON_PERF_CLIENT_ID": "${input:ozon-perf-client-id}",
        "OZON_PERF_CLIENT_SECRET": "${input:ozon-perf-client-secret}",
        "DATA_DIR": "${input:data-dir}"
      }
    }
  }
}

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

ozon mcp server in other clients