Skip to content
VS Code

wet mcp for VS Code

io.github.n24q02m/wet-mcp

Open-source MCP server for AI agents: web search, content extraction, and library docs.

client:VS Code transport:stdio runtime:pypi

Install wet mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "api-keys",
      "description": "API_KEYS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "github-token",
      "description": "GITHUB_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "wet-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "wet-mcp"
      ],
      "env": {
        "API_KEYS": "${input:api-keys}",
        "GITHUB_TOKEN": "${input:github-token}"
      }
    }
  }
}

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

wet mcp in other clients