Skip to content
VS Code

Hudu for VS Code

io.github.wyre-technology/hudu-mcp

MCP server for Hudu IT documentation — companies, assets, articles, passwords, and procedures.

client:VS Code transport:stdio runtime:oci

Install Hudu in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "hudu-api-key",
      "description": "HUDU_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "hudu-base-url",
      "description": "HUDU_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mcp-transport",
      "description": "MCP_TRANSPORT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "auth-mode",
      "description": "AUTH_MODE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "log-level",
      "description": "LOG_LEVEL",
      "password": true
    }
  ],
  "servers": {
    "hudu-mcp": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/wyre-technology/hudu-mcp:v1.3.7"
      ],
      "env": {
        "HUDU_API_KEY": "${input:hudu-api-key}",
        "HUDU_BASE_URL": "${input:hudu-base-url}",
        "MCP_TRANSPORT": "${input:mcp-transport}",
        "AUTH_MODE": "${input:auth-mode}",
        "LOG_LEVEL": "${input:log-level}"
      }
    }
  }
}

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

Hudu in other clients