Skip to content
VS Code

Huntress for VS Code

io.github.wyre-technology/huntress-mcp

MCP server for Huntress — accounts, organizations, agents, incidents, and reports.

client:VS Code transport:stdio runtime:oci

Install Huntress in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "huntress-api-key",
      "description": "HUNTRESS_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "huntress-api-secret",
      "description": "HUNTRESS_API_SECRET",
      "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": {
    "huntress-mcp": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/wyre-technology/huntress-mcp:v1.2.19"
      ],
      "env": {
        "HUNTRESS_API_KEY": "${input:huntress-api-key}",
        "HUNTRESS_API_SECRET": "${input:huntress-api-secret}",
        "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

Huntress in other clients