Skip to content
VS Code

mcp server for VS Code

io.github.mobileproxy/mcp-server

MCP server for mobileproxy.space — manage your mobile proxies from Claude, Cursor, Windsurf.

client:VS Code transport:stdio runtime:npm

Install mcp server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "mobileproxy-api-key",
      "description": "MOBILEPROXY_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mobileproxy-api-base",
      "description": "MOBILEPROXY_API_BASE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mobileproxy-timeout-ms",
      "description": "MOBILEPROXY_TIMEOUT_MS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mobileproxy-debug",
      "description": "MOBILEPROXY_DEBUG",
      "password": true
    }
  ],
  "servers": {
    "mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@mobileproxy/mcp-server"
      ],
      "env": {
        "MOBILEPROXY_API_KEY": "${input:mobileproxy-api-key}",
        "MOBILEPROXY_API_BASE": "${input:mobileproxy-api-base}",
        "MOBILEPROXY_TIMEOUT_MS": "${input:mobileproxy-timeout-ms}",
        "MOBILEPROXY_DEBUG": "${input:mobileproxy-debug}"
      }
    }
  }
}

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

mcp server in other clients