-
Simplified MCP Server Implementation
- Created a minimal wrapper (
kubectl_mcp_tool.minimal_wrapper.py
) for better compatibility - Removed complex parameter schemas that were causing compatibility issues
- Used direct tool registration with simple names
- Created a minimal wrapper (
-
Improved Cursor Integration
- Updated Cursor configuration to use the minimal wrapper
- Added explicit environment variables for PATH and KUBECONFIG
- Provided better error handling and logging
-
Enhanced Claude and WindSurf Support
- Updated configuration for Claude Desktop
- Updated configuration for WindSurf
- Standardized configuration format across all AI assistants
-
Streamlined Installation Process
- Improved installation script to set up all configurations automatically
- Added automatic testing of kubectl and kubeconfig
- Created better error handling during installation
-
Comprehensive Documentation Updates
- Updated README.md with working configuration examples
- Updated integration guides for all supported AI assistants
- Created a new QUICKSTART.md guide for new users
- Enhanced troubleshooting section with more specific solutions
{
"mcpServers": {
"kubernetes": {
"command": "python",
"args": ["-m", "kubectl_mcp_tool.cli.cli"]
}
}
}
{
"mcpServers": {
"kubernetes": {
"command": "python",
"args": ["-m", "kubectl_mcp_tool.minimal_wrapper"],
"env": {
"KUBECONFIG": "/path/to/your/.kube/config",
"PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/homebrew/bin"
}
}
}
}
The key implementation changes include:
- Using a simpler tool registration approach:
@server.tool("process_natural_language")
async def process_natural_language(query: str):
# Implementation...
-
Avoiding complex parameter schemas that aren't supported in some MCP SDK versions
-
Setting explicit environment variables to ensure kubectl can be found
-
Better error handling throughout the codebase
-
Comprehensive debugging and logging
After applying these changes, you can verify your installation with:
# Test command line
kubectl-mcp --help
# Test MCP server directly
python -m kubectl_mcp_tool.minimal_wrapper
# Run automated installation
bash install.sh
Then try using your AI assistant to interact with your Kubernetes cluster.