mcp-k8s-context-server
Provides a read-only interface to Kubernetes clusters, enabling LLMs to list pods, get pod status and logs, fetch deployment manifests, and perform pod health analysis with resource trend tracking.
README
MCP K8s Context Server
A FastMCP server that exposes Kubernetes as a set of read-only tools consumable by LLMs, plus an analytics layer for pod-health analysis and resource-trend tracking.
Features
| Tool | Description |
|---|---|
list_pods(namespace) |
List pods in a namespace with phase and restart info |
get_pod_status(pod_name, namespace) |
Detailed pod status, conditions, and container states |
get_pod_logs(pod_name, namespace, tail_lines) |
Tail recent pod logs |
get_deployment_manifest(deployment_name, namespace) |
Full deployment spec as JSON |
analyze_pod_health(namespace, hours) |
Analytics: scan logs, detect error patterns, rank unhealthy pods |
get_resource_trends(deployment_name, namespace) |
Analytics: CPU/memory from Metrics API with historical SQLite persistence |
Project Structure
mcp-k8s-context-server/
├── k8s_mcp_server.py # FastMCP server (all tools)
├── requirements.txt # Python dependencies
├── Dockerfile # Container image definition
├── k8s/
│ ├── serviceaccount.yaml # ServiceAccount + Namespace
│ ├── role.yaml # Least-privilege ClusterRole (read-only)
│ ├── rolebinding.yaml # ClusterRoleBinding
│ └── deployment.yaml # Deployment + Service
└── .github/
└── workflows/
└── ci.yml # Build + kubeconform validation
Local Development
# Create and activate a virtual environment
python -m venv .venv && source .venv/bin/activate
# Install dependencies
pip install -r requirements.txt
# Run with local kubeconfig (falls back automatically from in-cluster config)
python k8s_mcp_server.py
In-Cluster Deployment (minikube)
Prerequisites
# Install minikube, kubectl, docker
minikube version # >= 1.32
kubectl version # >= 1.28
docker version # >= 24
Step 1 — Start minikube
minikube start --cpus=2 --memory=4096
Step 2 — Enable metrics-server (required for get_resource_trends)
minikube addons enable metrics-server
Step 3 — Build and load the image into minikube
# Build locally
docker build -t mcp-k8s-server:latest .
# Load into minikube's image registry (no registry push needed)
minikube image load mcp-k8s-server:latest
# Verify the image is available
minikube image ls | grep mcp-k8s-server
Step 4 — Apply Kubernetes manifests
# Apply in dependency order: SA → Role → Binding → Deployment
kubectl apply -f k8s/serviceaccount.yaml
kubectl apply -f k8s/role.yaml
kubectl apply -f k8s/rolebinding.yaml
kubectl apply -f k8s/deployment.yaml
Step 5 — Verify the Pod is Running
kubectl get pods -n mcp-system
# Expected:
# NAME READY STATUS RESTARTS AGE
# mcp-k8s-server-xxxxxxxxx-xxxxx 1/1 Running 0 30s
kubectl logs -n mcp-system deploy/mcp-k8s-server
# Expected: "Using in-cluster Kubernetes config (ServiceAccount token)"
Step 6 — Test read-only tools in-cluster
# Port-forward to access the server from your laptop
kubectl port-forward -n mcp-system svc/mcp-k8s-server 8000:8000 &
# Create a test pod to query
kubectl run nginx-test --image=nginx --restart=Never
# Test list_pods
curl -s http://localhost:8000/tools/list_pods \
-H 'Content-Type: application/json' \
-d '{"namespace":"default"}' | jq .
# Test get_pod_logs
curl -s http://localhost:8000/tools/get_pod_logs \
-H 'Content-Type: application/json' \
-d '{"pod_name":"nginx-test","namespace":"default","tail_lines":20}' | jq .
# Test analyze_pod_health
curl -s http://localhost:8000/tools/analyze_pod_health \
-H 'Content-Type: application/json' \
-d '{"namespace":"default","hours":1}' | jq .
Step 7 — Prove RBAC blocks write operations
The ServiceAccount has no write verbs. To confirm this:
# Exec into the pod and try to delete another pod using the SA token
MCP_POD=$(kubectl get pod -n mcp-system -l app=mcp-k8s-server -o jsonpath='{.items[0].metadata.name}')
kubectl exec -n mcp-system $MCP_POD -- \
kubectl delete pod nginx-test --namespace=default \
--token=$(cat /var/run/secrets/kubernetes.io/serviceaccount/token) \
--server=https://kubernetes.default.svc \
--certificate-authority=/var/run/secrets/kubernetes.io/serviceaccount/ca.crt
Expected output:
Error from server (Forbidden): pods "nginx-test" is forbidden:
User "system:serviceaccount:mcp-system:mcp-server-sa" cannot delete
resource "pods" in API group "" in the namespace "default"
This 403 Forbidden response from the API server is the live proof that the RBAC scoping works — the ServiceAccount can read but cannot modify any resource.
RBAC Least-Privilege Design
Philosophy
Grant only what is needed, explicitly deny everything else.
The MCP server is an observability tool — it reads cluster state to help operators and AI systems understand what's happening. It has no legitimate reason to create, modify, or delete any resource.
What is granted
| Resource | Verbs | Reason |
|---|---|---|
pods |
get, list, watch |
list_pods, get_pod_status, analyze_pod_health |
pods/log |
get, list, watch |
get_pod_logs, analyze_pod_health |
deployments |
get, list, watch |
get_deployment_manifest, get_resource_trends |
metrics.k8s.io/pods |
get, list |
get_resource_trends (Metrics API) |
What is explicitly NOT granted
| Verb | Reason for exclusion |
|---|---|
create |
No tool creates any resource |
update / patch |
No tool modifies any resource |
delete / deletecollection |
Catastrophic if misused; no read tool needs it |
escalate / bind |
Prevents privilege escalation |
This means a compromised MCP server cannot delete pods, scale deployments down to zero, modify secrets, or affect any running workload. The blast radius of a compromised MCP server is limited to reading information — not disrupting it.
Analytics Layer
analyze_pod_health
- Lists all pods in the namespace.
- Fetches up to 500 log lines per pod.
- Pattern-matches against a catalogue of known failure indicators:
OOMKilled,CrashLoopBackOff- Python/Java exceptions (Traceback, RuntimeError, etc.)
- Panic, SIGSEGV/SIGKILL, Connection errors, Permission denied
- Liveness/Readiness probe failures
- Computes a health score per pod (lower = worse).
- Returns pods ranked worst-first with error frequency counts.
- Persists results to SQLite for historical analysis.
get_resource_trends
- Resolves pod selector from the Deployment spec.
- Reads resource limits from pod specs.
- Queries the Kubernetes Metrics API (
metrics.k8s.io/v1beta1) for live CPU/memory. - Computes: average, peak, and % of limit for both CPU and memory.
- Persists each snapshot to
mcp_analytics.dbso trends build up across calls.
Requires
metrics-serveraddon:minikube addons enable metrics-server
CI / Continuous Integration
The GitHub Actions workflow (.github/workflows/ci.yml) runs on every push and PR:
- Docker Build — builds the image without pushing (validates Dockerfile + dependencies).
- kubeconform — validates all
k8s/*.yamlmanifests against the Kubernetes 1.29 schema in strict mode. - ruff — lints
k8s_mcp_server.pyfor Python errors and style.
Environment Variables
| Variable | Default | Description |
|---|---|---|
MCP_DB_PATH |
mcp_analytics.db |
Path to the SQLite analytics database |
License
MIT
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。