Multi-Cluster MCP server
The gateway for GenAI systems to interact with multiple Kubernetes clusters through the MCP
Overview
The Multicluster MCP Server is a gateway designed for Generative AI (GenAI) systems to interact with multiple Kubernetes clusters through the Model Context Protocol (MCP). It enables comprehensive operations on Kubernetes resources and facilitates streamlined multi-cluster management.
To use the Multicluster MCP Server, ensure that kubectl is installed. Configure the server settings in the appropriate configuration file for your operating system, and then you can access and manage multiple Kubernetes clusters.
- Fully supports
kubectlfor Kubernetes cluster operations. - Manage resources across multiple Kubernetes clusters. - Retrieve and analyze metrics, logs, and alerts from integrated clusters.
- Managing deployments across multiple Kubernetes clusters.
- Streamlining operations for Generative AI applications.
- Observing and analyzing cluster performance metrics.
Add to your AI client
Use these steps to connect Multi-Cluster MCP server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"multicluster-mcp-server-yanmxa": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-multicluster-mcp-server-yanmxa"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"multicluster-mcp-server-yanmxa": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-multicluster-mcp-server-yanmxa"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"multicluster-mcp-server-yanmxa": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-multicluster-mcp-server-yanmxa"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"multicluster-mcp-server-yanmxa": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-multicluster-mcp-server-yanmxa"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"multicluster-mcp-server-yanmxa": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-multicluster-mcp-server-yanmxa"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"multicluster-mcp-server-yanmxa": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-multicluster-mcp-server-yanmxa"
]
}
}
}FAQ
Is the Multicluster MCP Server free to use?
Yes! The Multicluster MCP Server is open-source and free to use under the MIT License.
What is required to run the Multicluster MCP Server?
You need to have `kubectl` installed and properly configured to access your Kubernetes clusters.