Skip to content
VS Code

Annolux Search for VS Code

io.github.eason4kim-rocket/annolux

Search a curated English and Chinese web index through one read-only MCP tool.

client:VS Code transport:stdio runtime:oci

Install Annolux Search in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "annolux-api-url",
      "description": "ANNOLUX_API_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "annolux-api-key",
      "description": "ANNOLUX_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "annolux": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/eason4kim-rocket/annolux-mcp:0.1.2"
      ],
      "env": {
        "ANNOLUX_API_URL": "${input:annolux-api-url}",
        "ANNOLUX_API_KEY": "${input:annolux-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

Annolux Search in other clients