Skip to content
VS Code

Авито MCP (RU) for VS Code

io.github.ilyautov/avito-mcp-ru

API Авито в ИИ-ассистенте: объявления, чаты, заказы, автозагрузка, отзывы

client:VS Code transport:stdio runtime:pypi

Install Авито MCP (RU) in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "avito-client-id",
      "description": "AVITO_CLIENT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "avito-client-secret",
      "description": "AVITO_CLIENT_SECRET",
      "password": true
    }
  ],
  "servers": {
    "avito-mcp-ru": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "avito-mcp-ru"
      ],
      "env": {
        "AVITO_CLIENT_ID": "${input:avito-client-id}",
        "AVITO_CLIENT_SECRET": "${input:avito-client-secret}"
      }
    }
  }
}

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

Авито MCP (RU) in other clients