Skip to content
VS Code

steam local mcp for VS Code

io.github.jackson-brooks/steam-local-mcp

A Windows Steam MCP server with local client controls and optional Steam Web API insights.

client:VS Code transport:stdio runtime:npm

Install steam local mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "steam-api-key",
      "description": "STEAM_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "steam-id",
      "description": "STEAM_ID",
      "password": true
    }
  ],
  "servers": {
    "steam-local-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "steam-local-mcp"
      ],
      "env": {
        "STEAM_API_KEY": "${input:steam-api-key}",
        "STEAM_ID": "${input:steam-id}"
      }
    }
  }
}

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

steam local mcp in other clients