Skip to content
VS Code

vinted mcp for VS Code

io.github.andrijdavid/vinted-mcp

MCP Server for Vinted that allows to search items, compare prices, and analyze sellers.

client:VS Code transport:stdio runtime:npm

Install vinted mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "vinted-auth-mode",
      "description": "VINTED_AUTH_MODE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "vinted-auth-cookies",
      "description": "VINTED_AUTH_COOKIES",
      "password": true
    },
    {
      "type": "promptString",
      "id": "vinted-auth-csrf-token",
      "description": "VINTED_AUTH_CSRF_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "vinted-auth-access-token",
      "description": "VINTED_AUTH_ACCESS_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "vinted-proxy-url",
      "description": "VINTED_PROXY_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "vinted-max-concurrency",
      "description": "VINTED_MAX_CONCURRENCY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "vinted-request-delay-ms",
      "description": "VINTED_REQUEST_DELAY_MS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "vinted-max-retries",
      "description": "VINTED_MAX_RETRIES",
      "password": true
    }
  ],
  "servers": {
    "vinted-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@andrijdavid/vinted-mcp"
      ],
      "env": {
        "VINTED_AUTH_MODE": "${input:vinted-auth-mode}",
        "VINTED_AUTH_COOKIES": "${input:vinted-auth-cookies}",
        "VINTED_AUTH_CSRF_TOKEN": "${input:vinted-auth-csrf-token}",
        "VINTED_AUTH_ACCESS_TOKEN": "${input:vinted-auth-access-token}",
        "VINTED_PROXY_URL": "${input:vinted-proxy-url}",
        "VINTED_MAX_CONCURRENCY": "${input:vinted-max-concurrency}",
        "VINTED_REQUEST_DELAY_MS": "${input:vinted-request-delay-ms}",
        "VINTED_MAX_RETRIES": "${input:vinted-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

vinted mcp in other clients