Skip to content
VS Code

proxy4agents mcp for VS Code

io.github.novadalabs/proxy4agents-mcp

Residential proxy MCP for AI agents — geo-targeting, sticky sessions, anti-bot bypass.

client:VS Code transport:stdio runtime:npm

Install proxy4agents mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "novada-proxy-user",
      "description": "NOVADA_PROXY_USER",
      "password": true
    },
    {
      "type": "promptString",
      "id": "novada-proxy-pass",
      "description": "NOVADA_PROXY_PASS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "novada-api-key",
      "description": "NOVADA_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "novada-browser-ws",
      "description": "NOVADA_BROWSER_WS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "brightdata-user",
      "description": "BRIGHTDATA_USER",
      "password": true
    },
    {
      "type": "promptString",
      "id": "brightdata-pass",
      "description": "BRIGHTDATA_PASS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "smartproxy-user",
      "description": "SMARTPROXY_USER",
      "password": true
    },
    {
      "type": "promptString",
      "id": "smartproxy-pass",
      "description": "SMARTPROXY_PASS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "oxylabs-user",
      "description": "OXYLABS_USER",
      "password": true
    },
    {
      "type": "promptString",
      "id": "oxylabs-pass",
      "description": "OXYLABS_PASS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "proxy-url",
      "description": "PROXY_URL",
      "password": true
    }
  ],
  "servers": {
    "proxy4agents-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "bestproxy4agents-mcp"
      ],
      "env": {
        "NOVADA_PROXY_USER": "${input:novada-proxy-user}",
        "NOVADA_PROXY_PASS": "${input:novada-proxy-pass}",
        "NOVADA_API_KEY": "${input:novada-api-key}",
        "NOVADA_BROWSER_WS": "${input:novada-browser-ws}",
        "BRIGHTDATA_USER": "${input:brightdata-user}",
        "BRIGHTDATA_PASS": "${input:brightdata-pass}",
        "SMARTPROXY_USER": "${input:smartproxy-user}",
        "SMARTPROXY_PASS": "${input:smartproxy-pass}",
        "OXYLABS_USER": "${input:oxylabs-user}",
        "OXYLABS_PASS": "${input:oxylabs-pass}",
        "PROXY_URL": "${input:proxy-url}"
      }
    }
  }
}

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

proxy4agents mcp in other clients