Kubernetes Claude MCP Server integrates Claude's AI capabilities with Kubernetes, ArgoCD, and GitLab to provide AI-powered analysis and troubleshooting for GitOps workflows. Built with Go, it collects comprehensive information about Kubernetes resources, correlates data across systems, and presents structured context to Claude for intelligent analysis. The server features a RESTful API for querying resources, analyzing deployments, and troubleshooting issues, making it particularly valuable for DevOps teams seeking to understand complex Kubernetes environments, identify root causes of failures, and receive actionable recommendations for GitOps pipeline improvements.
No reviews yet. Be the first to review!
Sign in to join the conversation
Check the health of the MCP server. Method: GET /api/v1/health
Retrieve a list of all Kubernetes namespaces. Method: GET /api/v1/namespaces
Get a list of resources of a specific kind in a namespace. Method: GET /api/v1/resources/{kind}?namespace={ns}
Fetch details of a specific resource by its kind and name in a namespace. Method: GET /api/v1/resources/{kind}/{name}?namespace={ns}
Retrieve events related to a specific resource in a namespace. Method: GET /api/v1/events?namespace={ns}&resource={kind}&name={name}
List all applications managed by ArgoCD. Method: GET /api/v1/argocd/applications
Analyze a resource to determine its status or issues. Method: POST /api/v1/mcp/resource
Troubleshoot a resource to find and solve problems. Method: POST /api/v1/mcp/troubleshoot
Commit the analysis results to GitLab. Method: POST /api/v1/mcp/commit
Make a generic request to the MCP server. Method: POST /api/v1/mcp