Skip to content
VS Code

ozon seller for VS Code

io.github.dontsovcmc/ozon-seller

MCP server for Ozon Seller API — products, FBS/FBO, finance, analytics, returns

client:VS Code transport:stdio runtime:pypi

Install ozon seller 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
    }
  ],
  "servers": {
    "ozon-seller": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "mcp-server-ozon-seller"
      ],
      "env": {
        "OZON_CLIENT_ID": "${input:ozon-client-id}",
        "OZON_API_KEY": "${input:ozon-api-key}"
      }
    }
  }
}

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

ozon seller in other clients