Skip to content
VS Code

Toyota & Lexus for VS Code

io.github.zepgram/toyota

Toyota & Lexus vehicles: fuel, range, location, trips, health, climate, charging, commands

client:VS Code transport:stdio runtime:pypi

Install Toyota & Lexus in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "toyota-username",
      "description": "TOYOTA_USERNAME",
      "password": true
    },
    {
      "type": "promptString",
      "id": "toyota-password",
      "description": "TOYOTA_PASSWORD",
      "password": true
    },
    {
      "type": "promptString",
      "id": "toyota-vin",
      "description": "TOYOTA_VIN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "toyota-brand",
      "description": "TOYOTA_BRAND",
      "password": true
    },
    {
      "type": "promptString",
      "id": "toyota-use-metric",
      "description": "TOYOTA_USE_METRIC",
      "password": true
    }
  ],
  "servers": {
    "toyota": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "toyota-mcp"
      ],
      "env": {
        "TOYOTA_USERNAME": "${input:toyota-username}",
        "TOYOTA_PASSWORD": "${input:toyota-password}",
        "TOYOTA_VIN": "${input:toyota-vin}",
        "TOYOTA_BRAND": "${input:toyota-brand}",
        "TOYOTA_USE_METRIC": "${input:toyota-use-metric}"
      }
    }
  }
}

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

Toyota & Lexus in other clients