Skip to content
VS Code

Fleets for VS Code

io.github.runfleets/cli

Multi-site analytics as tools: GA4, Search Console, Cloudflare edge, PageSpeed, insights.

client:VS Code transport:stdio runtime:npm

Install Fleets in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "fleets-token",
      "description": "FLEETS_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "cli": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "fleets-mcp"
      ],
      "env": {
        "FLEETS_TOKEN": "${input:fleets-token}"
      }
    }
  }
}

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

Fleets in other clients