Gke (google Kubernetes Engine) Mcp

by GoogleCloudPlatform

251 downloads
Not rated
GitHub

About

# GKE MCP Server Enable MCP-compatible AI agents to interact with Google Kubernetes Engine. # Installation Choose a way to install the MCP Server and then connect your AI to it. ## Install the MCP Server #### Quick Install (Linux & MacOS only) ```sh curl -sSL…

Details

Author
GoogleCloudPlatform
Downloads
251
Categories
Cloud Service

- Creates AI‑optimized GKE clusters.
- Lists and retrieves detailed cluster information.
- Generates GKE manifests for AI/ML inference.
- Provides recommendations and queries GKE logs.
- Offers context on GKE costs and known issues.

Install the gke-mcp binary using the quick install script (curl -sSL https://raw.githubusercontent.com/GoogleCloudPlatform/gke-mcp/main/install.sh | bash) or manually with go install. Then add the server to your AI – for example, run gke-mcp install gemini-cli for Gemini CLI, or merge the JSON snippet into your MCP configuration for other AI tools.

GKE MCP Server

Enable MCP-compatible AI agents to interact with Google Kubernetes Engine.

Installation

Choose a way to install the MCP Server and then connect your AI to it.

Install the MCP Server

Quick Install (Linux & MacOS only)

curl -sSL https://raw.githubusercontent.com/GoogleCloudPlatform/gke-mcp/main/install.sh | bash

Manual Install

If you haven't already installed Go, follow the instructions here.

Once Go is installed, run the following command to install gke-mcp:

go install github.com/GoogleCloudPlatform/gke-mcp@latest

The gke-mcp binary will be installed in the directory specified by the GOBIN environment variable. If GOBIN is not set, it defaults to $GOPATH/bin and, if GOPATH is also not set, it falls back to $HOME/go/bin.

You can find the exact location by running go env GOBIN. If the command returns an empty value, run go env GOPATH to find the installation directory.

For additional help, refer to the troubleshoot section: gke-mcp: command not found.

Add the MCP Server to your AI

Gemini CLI

Install it as a gemini-cli extension:

gke-mcp install gemini-cli

This will create a manifest file in ./.gemini/extensions/gke-mcp that points to the gke-mcp binary.

Other AIs

For AIs that support JSON configuration, usually you can add the MCP server to your existing config with the below JSON. Don't copy and paste it as-is, merge it into your existing JSON settings.

{
  "mcpServers": {
    "gke-mcp": {
      "command": "gke-mcp",
    }
  }
}

MCP Tools

- cluster_toolkit: Creates AI optimized GKE Clusters.
- list_clusters: List your GKE clusters.
- get_cluster: Get detailed about a single GKE Cluster.
- giq_generate_manifest: Generate a GKE manifest for AI/ML inference workloads using Google Inference Quickstart.
- list_recommendations: List recommendations for your GKE clusters.
- query_logs: Query Google Cloud Platform logs using Logging Query Language (LQL).
- get_log_schema: Get the schema for a specific GKE log type.

MCP Context

In addition to the tools above, a lot of value is provided through the bundled context instructions.

- Cost: The provided instructions allows the AI to answer many questions related to GKE costs, including queries related to clusters, namespaces, and Kubernetes workloads.

- GKE Known Issues: The provided instructions allows the AI to fetch the latest GKE Known issues and check whether the cluster is affected by one of these known issues.

Development

To compile the binary and update the gemini-cli extension with your local changes, follow these steps:

1. Remove the global gke-mcp configuration

    rm -rf ~/.gemini/extensions/gke-mcp
    

1. Build the binary from the root of the project:

    go build -o gke-mcp .
    

1. Run the installation command to update the extension manifest:

    ./gke-mcp install gemini-cli --developer
    

This will make gemini-cli use your locally compiled binary.

No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.