### Configure SteamGPT for Cline or Cursor Source: https://github.com/steamgptnet/steamgpt-mcp/blob/main/llms-install.md Add this JSON configuration to your MCP settings file to enable the SteamGPT server via HTTP. ```json { "mcpServers": { "steamgpt": { "url": "https://steamgpt.net/mcp" } } } ``` -------------------------------- ### Configure steamgpt-mcp in VS Code Source: https://github.com/steamgptnet/steamgpt-mcp/blob/main/README.md Add the server configuration to the VS Code MCP user configuration file. ```json { "servers": { "steamgpt": { "type": "http", "url": "https://steamgpt.net/mcp" } } } ``` -------------------------------- ### Configure SteamGPT via stdio proxy Source: https://github.com/steamgptnet/steamgpt-mcp/blob/main/llms-install.md Use this fallback configuration if your client does not support direct HTTP connections. Requires Node.js version 18 or higher. ```json { "mcpServers": { "steamgpt": { "command": "npx", "args": [ "-y", "steamgpt-mcp" ] } } } ``` -------------------------------- ### Add SteamGPT via Claude Code Source: https://github.com/steamgptnet/steamgpt-mcp/blob/main/llms-install.md Use this command to register the SteamGPT MCP server directly within the Claude Code CLI. ```bash claude mcp add --transport http steamgpt https://steamgpt.net/mcp ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.