Skip to content
VS Code

my websearch for VS Code

io.github.wtznicy/my-websearch

MyWebSearch - multi-engine web search MCP server, CLI and local daemon. No API keys required.

client:VS Code transport:stdio runtime:npm

Install my websearch in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "exa-api-key",
      "description": "EXA_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "my-websearch": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "my-websearch"
      ],
      "env": {
        "EXA_API_KEY": "${input:exa-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

my websearch in other clients