Skip to content
VS Code

openwebninja mcp for VS Code

io.github.openweb-ninja/openwebninja-mcp

Official MCP server for OpenWeb Ninja APIs - 40+ real-time web data and SERP APIs as MCP tools

client:VS Code transport:stdio runtime:npm

Install openwebninja mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "openwebninja-api-key",
      "description": "OPENWEBNINJA_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "openwebninja-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@openwebninja/mcp-server"
      ],
      "env": {
        "OPENWEBNINJA_API_KEY": "${input:openwebninja-api-key}"
      }
    }
  }
}

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

openwebninja mcp in other clients