Skip to content
VS Code

Lumino MCP Server for VS Code

io.github.geored/lumino

AI-powered SRE observability for Kubernetes/OpenShift with 40+ Tekton debugging tools

client:VS Code transport:stdio runtime:pypi

Install Lumino MCP Server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "kubeconfig",
      "description": "KUBECONFIG",
      "password": true
    }
  ],
  "servers": {
    "lumino": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "lumino-mcp-server"
      ],
      "env": {
        "KUBECONFIG": "${input:kubeconfig}"
      }
    }
  }
}

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

Lumino MCP Server in other clients