Skip to content
VS Code

pitwall-mcp for VS Code

io.github.sergioprats/pitwall-mcp

Solo lectura sobre BMW CarData: mantenimiento, neumaticos y bateria de 12V. No afiliado a BMW AG.

client:VS Code transport:stdio runtime:pypi

Install pitwall-mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "pitwall-client-id",
      "description": "PITWALL_CLIENT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "pitwall-vin",
      "description": "PITWALL_VIN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "pitwall-container-id",
      "description": "PITWALL_CONTAINER_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "pitwall-token-file",
      "description": "PITWALL_TOKEN_FILE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "pitwall-db-path",
      "description": "PITWALL_DB_PATH",
      "password": true
    },
    {
      "type": "promptString",
      "id": "pitwall-daily-quota",
      "description": "PITWALL_DAILY_QUOTA",
      "password": true
    },
    {
      "type": "promptString",
      "id": "pitwall-log-level",
      "description": "PITWALL_LOG_LEVEL",
      "password": true
    }
  ],
  "servers": {
    "pitwall-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "pitwall-mcp"
      ],
      "env": {
        "PITWALL_CLIENT_ID": "${input:pitwall-client-id}",
        "PITWALL_VIN": "${input:pitwall-vin}",
        "PITWALL_CONTAINER_ID": "${input:pitwall-container-id}",
        "PITWALL_TOKEN_FILE": "${input:pitwall-token-file}",
        "PITWALL_DB_PATH": "${input:pitwall-db-path}",
        "PITWALL_DAILY_QUOTA": "${input:pitwall-daily-quota}",
        "PITWALL_LOG_LEVEL": "${input:pitwall-log-level}"
      }
    }
  }
}

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

pitwall-mcp in other clients