Liongard for VS Code
io.github.wyre-technology/liongard-mcp
MCP server for Liongard — inspectors, environments, metrics, detections, and timeline data.
client:VS Code
transport:stdio
runtime:oci
Install Liongard in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "liongard-api-key",
"description": "LIONGARD_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "liongard-instance",
"description": "LIONGARD_INSTANCE",
"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": {
"liongard-mcp": {
"type": "stdio",
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/wyre-technology/liongard-mcp:v2.3.7"
],
"env": {
"LIONGARD_API_KEY": "${input:liongard-api-key}",
"LIONGARD_INSTANCE": "${input:liongard-instance}",
"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