Skip to content
VS Code

RocketCyber for VS Code

io.github.wyre-ai/rocketcyber-mcp

MCP server for RocketCyber Managed SOC — incidents, alerts, agents, and customer telemetry.

client:VS Code transport:stdio runtime:oci

Install RocketCyber in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "rocketcyber-api-key",
      "description": "ROCKETCYBER_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "rocketcyber-customer-id",
      "description": "ROCKETCYBER_CUSTOMER_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "rocketcyber-api-url",
      "description": "ROCKETCYBER_API_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": {
    "rocketcyber-mcp": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/wyre-ai/rocketcyber-mcp:v1.5.7"
      ],
      "env": {
        "ROCKETCYBER_API_KEY": "${input:rocketcyber-api-key}",
        "ROCKETCYBER_CUSTOMER_ID": "${input:rocketcyber-customer-id}",
        "ROCKETCYBER_API_URL": "${input:rocketcyber-api-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

RocketCyber in other clients