Skip to content
VS Code

Blumira for VS Code

io.github.wyre-technology/blumira-mcp

MCP server for Blumira SIEM — query findings, evidence, and detection data via the Blumira API.

client:VS Code transport:stdio runtime:oci

Install Blumira in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "blumira-jwt-token",
      "description": "BLUMIRA_JWT_TOKEN",
      "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": {
    "blumira-mcp": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/wyre-technology/blumira-mcp:v1.2.12"
      ],
      "env": {
        "BLUMIRA_JWT_TOKEN": "${input:blumira-jwt-token}",
        "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

Blumira in other clients