Skip to content
VS Code

Steam MCP Server for VS Code

io.github.grinv/steam-games-mcp

Steam store/game data (no key) plus player profiles, libraries and achievements (Steam Web API).

client:VS Code transport:stdio runtime:npm

Install Steam MCP Server 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
    },
    {
      "type": "promptString",
      "id": "steam-country",
      "description": "STEAM_COUNTRY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "steam-language",
      "description": "STEAM_LANGUAGE",
      "password": true
    }
  ],
  "servers": {
    "steam-games-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "steam-games-mcp"
      ],
      "env": {
        "STEAM_API_KEY": "${input:steam-api-key}",
        "STEAM_ID": "${input:steam-id}",
        "STEAM_COUNTRY": "${input:steam-country}",
        "STEAM_LANGUAGE": "${input:steam-language}"
      }
    }
  }
}

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

Steam MCP Server in other clients