Skip to content
VS Code

Steam MCP Server for VS Code

io.github.julianmeyerr/steam-mcp-server

Access Steam profiles, libraries, achievements, friends, news, and player statistics through MCP.

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": "my-steam-id",
      "description": "MY_STEAM_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "steam-family-member-ids",
      "description": "STEAM_FAMILY_MEMBER_IDS",
      "password": true
    }
  ],
  "servers": {
    "steam-mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@j.meyer/steam-mcp-server"
      ],
      "env": {
        "STEAM_API_KEY": "${input:steam-api-key}",
        "MY_STEAM_ID": "${input:my-steam-id}",
        "STEAM_FAMILY_MEMBER_IDS": "${input:steam-family-member-ids}"
      }
    }
  }
}

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