Skip to content
VS Code

Steam (read-only) for VS Code

io.github.sarg338/steam-mcp

Read-only Steam: friends, games, achievements, sales, plus game recommendations and co-op nights.

client:VS Code transport:stdio runtime:pypi

Install Steam (read-only) in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "steam-api-key",
      "description": "STEAM_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "steam-user",
      "description": "STEAM_USER",
      "password": true
    },
    {
      "type": "promptString",
      "id": "steam-mcp-tools",
      "description": "STEAM_MCP_TOOLS",
      "password": true
    }
  ],
  "servers": {
    "steam-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "steam-mcp"
      ],
      "env": {
        "STEAM_API_KEY": "${input:steam-api-key}",
        "STEAM_USER": "${input:steam-user}",
        "STEAM_MCP_TOOLS": "${input:steam-mcp-tools}"
      }
    }
  }
}

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

Steam (read-only) in other clients