
Connects Claude to Kubernetes clusters through a read-only MCP interface that covers core resources, Helm releases, Argo Workflows, and Argo CD. Exposes tools for listing and describing resources, streaming logs, executing commands in containers, fetching metrics, and running network diagnostics. Includes a sandboxed TypeScript runtime where agents can write multi-step inspection scripts with full access to the MCP tool catalog. Reads Helm metadata directly from Kubernetes storage (secrets and configmaps) without requiring the CLI. Ships with sensitive data masking for production use and a plan_step tool for persisting investigation state across long debugging sessions.
Read-only Model Context Protocol server for Kubernetes diagnostics. Agents get two public tools, load schemas on demand, and run multi-step cluster workflows in a single execution pass — so Kubernetes, Helm, Argo Workflows, and Argo CD stay reachable without saturating the context window.
Background: Evicting MCP tool calls from your Kubernetes cluster
v2 publishes exactly two public tools: run_code and approval-gated kube_pod_exec. Everything else is discovered inside the sandbox via tools.list(), tools.search(), and tools.help() — progressive discovery + programmatic calling.
run_code executes bounded TypeScript with top-level await. One call can list workloads, correlate events, fetch logs, and diff Helm state without shipping intermediate payloads back through the model:
const pods = await tools.kubernetes.list({ namespace: 'payments' });
const unhealthy = pods.items.filter((p) => p.status?.phase !== 'Running');
return Promise.all(
unhealthy.map(async (pod) => ({
pod: pod.metadata?.name,
logs: await tools.kubernetes.logs({
namespace: 'payments',
podName: pod.metadata?.name,
tailLines: 100,
}),
})),
);
kube_pod_exec is unreachable from sandboxed code. Top-level exec requires MCP elicitation, is bound to the argument digest, expires after 10 minutes, and fails closed. kube_port_forward is never a top-level tool and is denied inside code mode by default. tools.disabled() reports which policy blocked a capability and whether that denial is configurable.helm binary is a fallback, not a prerequisite.Prerequisites: Node.js ≥ 22 and access to a cluster (KUBECONFIG or in-cluster service account).
npx -y kubeview-mcp
# Claude Code
claude mcp add kubernetes -- npx kubeview-mcp
{
"mcpServers": {
"kubeview": {
"command": "npx",
"args": ["-y", "kubeview-mcp"]
}
}
}
In Cursor, /kubeview/code-mode injects the typed API into context.
| Variable | Description | Default |
|---|---|---|
KUBECONFIG | Kubeconfig path | ~/.kube/config |
MCP_KUBE_CONTEXT | Kubernetes context; defaults to the active context | unset |
MCP_K8S_SKIP_TLS_VERIFY | Skip TLS verification for the Kubernetes API (true/1) | false |
MCP_TIMEOUT | Default operation timeout in ms | plugin default |
MCP_HIDE_SENSITIVE | Mask sensitive data globally | false |
MCP_DISABLE_KUBERNETES_PLUGIN | Disable the Kubernetes plugin (true/1) | unset |
MCP_DISABLE_HELM_PLUGIN | Disable the Helm plugin (true/1) | unset |
| Variable | Description | Default |
|---|---|---|
MCP_MODE | code (default), all (alias), or tools | code |
MCP_CODE_MODE_DISABLED_TOOLS | Comma-separated code-mode denials; empty enables all | JSON/default |
MCP_ARGO_TOOLS | Argo override: auto, on, off | auto |
MCP_ARGOCD_TOOLS | Argo CD override: auto, on, off | auto |
MCP_LOG_LEVEL | error, warn, info, debug | info |
KUBE_MCP_FORCE_VM_SANDBOX | Force node:vm in the standalone runtime | unset |
| Variable | Description | Default |
|---|---|---|
MCP_TRANSPORT | stdio or http | stdio |
MCP_HTTP_HOST / _PORT | HTTP bind (when MCP_TRANSPORT=http) | 127.0.0.1:3000 |
MCP_HTTP_PATH | Streamable HTTP endpoint path | /mcp |
MCP_HTTP_JSON_RESPONSE | Prefer JSON over SSE (drops mid-call notifications) | false |
MCP_ALLOWED_HOSTS | Host allowlist (required when binding to 0.0.0.0/::) | local defaults |
MCP_ALLOWED_ORIGINS | Origin allowlist for HTTP | unset |
MCP_APPROVAL_STATE_SECRET | Shared 32+ byte signing secret; required for HTTP approvals | ephemeral (stdio) |
MCP_APPROVAL_REPLAY_DIR | Absolute shared-volume directory for one-time HTTP approvals | unset |
mkdir -p /tmp/kubeview-mcp-approvals
MCP_APPROVAL_STATE_SECRET='replace-with-at-least-32-random-bytes' \
MCP_APPROVAL_REPLAY_DIR=/tmp/kubeview-mcp-approvals \
MCP_TRANSPORT=http MCP_HTTP_HOST=127.0.0.1 MCP_HTTP_PORT=3000 npx -y kubeview-mcp
Endpoint: http://127.0.0.1:3000/mcp. HTTP follows the MCP 2026-07-28 stateless core: a fresh server per request, no initialize, no Mcp-Session-Id. Each request carries protocol version, client identity, and capabilities in _meta; modern requests add Mcp-Method/Mcp-Name for gateway routing. 2025-era clients use the SDK's stateless fallback on the same endpoint. State that must survive across calls has to be passed as tool arguments or handles.
HTTP mode refuses to start without both approval variables. Multi-replica deployments need the same secret and a shared writable replay directory; the /tmp example is for a single process only. The published MCP registry entry still targets stdio.
MCP_MODE | Exposed tools |
|---|---|
unset / code / all | run_code, kube_pod_exec |
tools | kube_list, kube_get, kube_logs, helm, kube_pod_exec, plus detected argo and argocd |
Domain tools use an operation discriminator:
helm — list | get | debugargo — list | get | logs | cron_list (when Workflow or CronWorkflow is discoverable)argocd — list | get | resources | logs | history | status (when Application is discoverable, or with ARGOCD_SERVER + ARGOCD_AUTH_TOKEN)Discovery is cached per kube context for 60 s. Missing optional APIs are omitted, not fatal.
Code mode is the default (MCP_MODE=code). The agent writes short TypeScript against a typed tools global instead of calling dozens of MCP tools.
Inside run_code:
tools namespaces for Kubernetes, Helm, and any detected Argo capabilities, generated from live schemas so parameters cannot be hallucinated.tools.list(), tools.search(), tools.help(), and tools.disabled() (the last reports why a capability was blocked).console and tools in scope — no filesystem, no network, no process.| Capability | Inside run_code | Top-level tool |
|---|---|---|
kube_pod_exec | Never available | Requires per-call user approval (10 min, argument-bound) |
kube_port_forward | Denied by default (configurable) | Never exposed |
| Everything else | Available | Only when MCP_MODE=tools |
Pod exec approval uses MCP elicitation and fails closed. The standalone npm run code-mode launcher has no trusted approval UI, so it always denies pod exec.
MCP_CODE_MODE_DISABLED_TOOLS (comma-separated) controls which capabilities are blocked inside run_code. Resolution order:
MCP_CODE_MODE_DISABLED_TOOLS env vardisabledTools in kube-mcp.code-mode.json["kube_port_forward"]An empty env value clears the list. kube_pod_exec cannot be added — it is permanently blocked.
MCP 2026-07-28:
structuredContent with text fallbackread-only, destructive, idempotent, open-world annotationsMcp-Method, Mcp-Name)git clone https://github.com/mikhae1/kubeview-mcp.git
cd kubeview-mcp && npm install
npm run build # compile
npm start # build + run
npm test # jest suite
npm run typecheck # tsc --noEmit
# Invoke a tool directly
npm run command -- kube_list --namespace=default
Protocol tests pin the SDK v2 client to 2026-07-28 and route through the server handler in-process (no open ports):
npm test -- --runInBand \
tests/server/StreamableHttpTransport.integration.test.ts \
tests/server/StreamableHttpRuntime.test.ts \
tests/server/TransportConfig.test.ts \
tests/compat/McpSdkCompatibility.test.ts
Contributions are welcome! Please feel free to submit an issue or a pull request.
MIT © mikhae1
KUBECONFIGPath to kubeconfig file; defaults to ~/.kube/config if unset.
MCP_TRANSPORTTransport mode: 'stdio' (default) or 'http'. The published package metadata still targets stdio by default.
MCP_MODEServer mode: 'all' (default), 'code', or 'tools'. Controls which features are enabled.
MCP_LOG_LEVELLogging level: 'error', 'warn', 'info' (default), or 'debug'.
MCP_KUBE_CONTEXTKubernetes context name to use. If unset, uses the current context from kubeconfig.
MCP_K8S_SKIP_TLS_VERIFYSkip TLS certificate verification for Kubernetes API (use 'true' or '1'). Not recommended for production.
MCP_HIDE_SENSITIVEEnable global sensitive data masking. Set to 'true' or '1' to mask sensitive values in responses.
MCP_TIMEOUTDefault timeout in milliseconds for operations. If unset, uses plugin-specific defaults.
MCP_HTTP_HOSTHTTP bind host when MCP_TRANSPORT=http. Defaults to 127.0.0.1.
MCP_HTTP_PORTHTTP port when MCP_TRANSPORT=http. Defaults to 3000.
MCP_HTTP_PATHHTTP endpoint path when MCP_TRANSPORT=http. Defaults to /mcp.
MCP_HTTP_STATELESSDisable session IDs in HTTP mode. Set to 'true' or '1' for stateless request handling.
MCP_HTTP_JSON_RESPONSEPrefer JSON responses over SSE in HTTP mode. Set to 'true' or '1' to enable.
MCP_ALLOWED_HOSTSComma-separated Host allowlist for HTTP mode. Required when binding to 0.0.0.0 or ::.
MCP_ALLOWED_ORIGINSComma-separated Origin allowlist for HTTP mode.
MCP_DISABLE_KUBERNETES_PLUGINDisable Kubernetes plugin. Set to 'true' or '1' to disable.
MCP_DISABLE_HELM_PLUGINDisable Helm plugin. Set to 'true' or '1' to disable.
MCP_DISABLE_ARGO_PLUGINDisable Argo Workflows plugin. Set to 'true' or '1' to disable.
MCP_DISABLE_ARGOCD_PLUGINDisable Argo CD plugin. Set to 'true' or '1' to disable.