Skip to content

Latest commit

 

History

History

mcp-server

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

⎈ Kubernetes MCP Server

This module serves as the MCP server for the Kubernetes AI Management System, providing comprehensive cluster management capabilities with AI-powered assistance.

For useful prompts, checkout the main README.md


🏗️ 1. Project Build

# From the mcp-server directory
mvn clean package

🤝 2. Integration with Claude Desktop

  1. Download the latest JAR file from the Releases page
  2. Update claude desktop json config to use the new MCP server
{
    "mcpServers": {
      "spring-ai-mcp-k8s": {
        "command": "java",
        "args": [
          "-Dspring.ai.mcp.server.stdio=true",
          "-Dspring.main.web-application-type=none",
          "-Dlogging.pattern.console=",
          "-jar",          
          "<<jar_file_location>>"
        ]
      }
    }
  }

Note: Make sure you have JDK 17 installed in your system and the JAVA_HOME is set to the JDK 17 installation path.

  1. Restart Claude Desktop
  2. Use the sample prompts provided in main README.md to test the new MCP server