Kubernetes Read Only MCP Server
Enables safe, read-only interaction with Kubernetes clusters, allowing users to list resources and fetch logs without any create/update/delete operations.
README
Kubernetes Read Only MCP Server
A Model Context Protocol (MCP) server for safely interacting with Kubernetes clusters using read-only operations.
This MCP server was created to provide a secure way to interact with Kubernetes clusters without allowing any create, update, or delete operations. It only exposes read-only APIs to ensure your clusters remain safe while still enabling AI assistants to help you monitor and troubleshoot your Kubernetes resources.
Built with FastMCP 2.0 and the official Kubernetes Python client library.
Blog post and Demo
Watch the demo running the MCP server using Amazon Q CLI at https://vijay.eu/posts/building-my-first-mcp-server/
Features
This MCP server provides the following read-only tools:
list_pods: List all pods in a namespace or across all namespaceslist_deployments: List all deployments in a specified namespacelist_services: List all services in a namespace or across all namespaceslist_namespaces: List all namespaces in the clusterget_events: Get Kubernetes events from the clusterget_pod_logs: Get logs from a specific podget_logs: Get logs from pods, deployments, jobs, or resources matching a label selectorlist_nodes: List all nodes in the cluster and their status
Prerequisites
- Python 3.10 or higher needed.
- uv is installed. If not, install it using
pip install uv - Kubernetes cluster up and running.
- Kubeconfig configured with default context.
- For demo purposes, you can use kind and docker to setup a local k8s cluster running quickly in your local machine. Refer to this quickstart: https://kind.sigs.k8s.io/docs/user/quick-start/
General MCP Host Configuration
Different MCP Hosts (like various AI assistants or CLIs that support MCP) manage their MCP Server configurations in unique ways. Generally, you'll need to inform your MCP Host how to start the kubernetes-readonly-mcp server.
This typically involves:
- Specifying the command to run the server. For
kubernetes-readonly-mcp, this is oftenuvx kubernetes-readonly-mcp@latest, which usesuvxto download and run the package from PyPI. - Providing any necessary arguments.
- Setting a working directory if required.
Please consult the documentation for your specific MCP Host on how to add and configure new MCP servers. For a detailed example of configuring an MCP server, see the "Amazon Q CLI Setup" section below, which shows how to set up this server with Amazon Q.
You can find more information about the Model Context Protocol and how different clients might implement it at:
- Model Context Protocol Documentation
- Example Host Documentation:
- Claude Desktop: User Quickstart
- Amazon Q CLI: MCP Configuration
Verification of the setup will also depend on your MCP Host. Typically, after configuration, the MCP server and its tools should become available within the host's interface.
Amazon Q CLI Setup
This section guides you through setting up the kubernetes-readonly-mcp server with the Amazon Q CLI.
1. Install Amazon Q CLI
If you haven't already, install the Amazon Q CLI. Please follow the official installation instructions provided in the Amazon Q Developer Guide.
2. Configure MCP Server for Amazon Q CLI
You need to tell Amazon Q CLI how to run the kubernetes-readonly-mcp server. Create or update your MCP configuration file at ~/.aws/amazonq/mcp.json.
Add the following entry to the mcpServers object:
{
"mcpServers": {
"kubernetes-readonly-mcp": {
"command": "uvx",
"args": ["kubernetes-readonly-mcp@latest"],
"workingDirectory": "~/",
"userDocs": {
"overview": "Provides read-only access to Kubernetes cluster information. Allows listing of pods, deployments, services, namespaces, nodes, and fetching logs."
}
}
// Add other MCP servers here if you have them
}
}
If the file or mcpServers object already exists, merge this configuration. Ensure the JSON is valid.
3. Install/Update kubernetes-readonly-mcp
The MCP configuration above uses uvx to run the kubernetes-readonly-mcp. uvx will automatically download and run the latest version of the package from PyPI if it's not already available in its cache or if a newer version is published.
To ensure you have uv (which provides uvx), install it if you haven't already:
pip install uv
Or, for isolated installation:
pipx install uv
uvx will handle the installation of kubernetes-readonly-mcp when it's first invoked by the Amazon Q CLI.
4. Verify MCP Server with uvx
Before using it with Amazon Q CLI, you can directly test if uvx can run the MCP server. This helps confirm that uv is installed correctly and the package can be fetched.
Open your terminal and run:
uvx kubernetes-readonly-mcp@latest list_namespaces
This command attempts to run the list_namespaces tool from the kubernetes-readonly-mcp server.
If successful, you should see a JSON output listing the namespaces in your default Kubernetes context (or an empty list if no namespaces are found, or an error if a K8s cluster is not configured). This indicates that uvx can execute the MCP server.
If you encounter issues, ensure your Kubernetes kubeconfig is correctly set up and uv is in your PATH.
After these steps, restart your Amazon Q CLI (if it was already running) for it to pick up the new MCP server configuration. You should then be able to invoke tools from kubernetes-readonly-mcp via Amazon Q.
Example Prompts
- "Get list of pods from my kubernetes cluster"
- "Are there any failing pods? Debug why they are failing"
- "Show me the logs from the nginx deployment"
- "List all services in the default namespace"
License
Apache License 2.0
Disclaimer
This is an experimental project and not production-ready. Use it at your own discretion.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.