Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"dm-nkp-gitops": {
"env": {
"KUBECONFIG": "/Users/deepak.muley/ws/nkp/dm-nkp-mgmt-1.conf"
},
"args": [
"serve",
"--read-only"
],
"command": "/path/to/dm-nkp-gitops-mcp-server"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A collection of MCP (Model Context Protocol) and A2A (Agent-to-Agent) servers for monitoring and debugging NKP GitOps infrastructure managed by Flux CD.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in devops
MCP server for using the GitLab API
Yunxiao MCP Server provides AI assistants with the ability to interact with the Yunxiao platform. It provides a set of tools that interact with Yunxiao's API, allowing AI assistants to manage Codeup repository, Project, Pipeline, Packages etc.
Enhanced MCP server for GitLab: group projects listing and activity tracking
MCP Server for kubernetes management commands
MCP Security Weekly
Get CVE alerts and security updates for Dm Nkp Gitops Custom Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A collection of MCP (Model Context Protocol) and A2A (Agent-to-Agent) servers for monitoring and debugging NKP GitOps infrastructure managed by Flux CD.
This repository contains multiple independent projects, each with its own purpose and implementation:
| Project | Description | Language | Status |
|---|---|---|---|
| MCP Server | Primary MCP server for AI assistants (Cursor, Claude Desktop) | Go | ✅ Production |
| A2A Server | Agent-to-Agent server for multi-agent coordination | Go | ✅ Production |
| kmcp-server | Kubernetes-native MCP server using kmcp/Kagent | Python | 🔄 Alternative |
| Multi-Agent Examples | Demo code for A2A multi-agent workflows | Go | 📚 Examples |
| Troubleshooting Examples | Working code examples for runbook patterns | Go | 📚 Examples |
📖 Start Here: See Deployment and Usage Guide for complete setup instructions.
The MCP server is the main project for integrating with AI assistants.
make build
# With default kubeconfig
./bin/dm-nkp-gitops-mcp-server serve
# With specific kubeconfig in read-only mode
KUBECONFIG=/path/to/kubeconfig ./bin/dm-nkp-gitops-mcp-server serve --read-only
Add to ~/.cursor/mcp.json:
{
"mcpServers": {
"dm-nkp-gitops": {
"command": "/path/to/dm-nkp-gitops-mcp-server",
"args": ["serve", "--read-only"],
"env": {
"KUBECONFIG": "/Users/deepak.muley/ws/nkp/dm-nkp-mgmt-1.conf"
}
}
}
}
Restart Cursor after saving.
| Category | Tool | Description |
|---|---|---|
| Context | list_contexts | List available Kubernetes contexts |
get_current_context | Get current active context | |
| GitOps | get_gitops_status | Overall GitOps health summary |
list_kustomizations | List Flux Kustomizations with status | |
get_kustomization | Get detailed Kustomization info | |
list_gitrepositories | List GitRepository sources | |
| Clusters | get_cluster_status | CAPI cluster status |
list_machines | List CAPI machines | |
| Apps | get_app_deployments | Kommander app deployment status |
get_helmreleases | List HelmReleases | |
| Debug | debug_reconciliation | Debug failing reconciliation |
get_events | Get Kubernetes events | |
get_pod_logs | Get pod logs | |
| Policy | check_policy_violations | Check policy violations |
list_constraints | List Gatekeeper constraints |
📖 Full Tools Reference → - Complete documentation with parameters, examples, and use cases
Once configured, ask your AI assistant:
"What's the GitOps status of my cluster?"
"Why is the clusterops-clusters Kustomization failing?"
"Show me all CAPI clusters and their health"
"Check for any policy violations"
"Debug the reconciliation failure for clusterops-workspace-applications"
Location: cmd/server/
Binary: dm-nkp-gitops-mcp-server
Purpose: MCP server for AI assistants (Cursor, Claude Desktop, VS Code)
Quick Start: make build && ./bin/dm-nkp-gitops-mcp-server serve --read-only
Location: cmd/a2a-server/
Binary: dm-nkp-gitops-a2a-server
Purpose: Agent-to-Agent server for multi-agent coordination