Install
$ agentstack add mcp-ryu1maniwa-kubernetes-documentation-mcp-server ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
Kubernetes Documentation MCP Server
Model Context Protocol (MCP) server for Kubernetes Documentation
This MCP server provides tools to access Kubernetes documentation and search for content using Google Custom Search.
Acknowledgements
This project is based on aws-documentation-mcp-server by Amazon Web Services, licensed under the Apache License 2.0.
Features
- Read Documentation: Fetch and convert Kubernetes documentation pages to markdown format
- Search Documentation: Search Kubernetes documentation using Google Custom Search
Prerequisites
Required Components
- Docker installed on your system
- Internet access to pull dependencies and access Kubernetes documentation
Google API Key Setup
To use the search functionality, you must obtain a Google API key:
- Visit the Google Cloud Console (https://console.cloud.google.com/apis/credentials)
- Create a new API key for the Custom Search API
- Add this API key to your MCP configuration as shown in the installation section
Without a valid Google API key, the search_documentation tool will not function properly.
Installation
To install and use the Kubernetes Documentation MCP Server with Docker:
- Build the Docker image:
docker build -t kubernetes-documentation-mcp-server .
- Configure your MCP with the following settings:
{
"mcpServers": {
"kubernetes-documentation-mcp-server": {
"command": "docker",
"args": [
"run",
"--rm",
"--interactive",
"--env",
"FASTMCP_LOG_LEVEL=ERROR",
"--env",
"GOOGLE_API_KEY=YOUR_GOOGLE_API_KEY",
"kubernetes-documentation-mcp-server:latest"
],
"env": {},
"disabled": false,
"autoApprove": []
}
}
}
Basic Usage
Example:
- "look up documentation on Pod lifecycle in Kubernetes. cite your sources"
- "search Kubernetes documentation for information about StatefulSets"
Tools
read_documentation
Fetches a Kubernetes documentation page and converts it to markdown format.
read_documentation(url: str) -> str
search_documentation
Searches Kubernetes documentation using Google Custom Search.
search_documentation(search_phrase: str, limit: int) -> list[dict]
Google Custom Search Integration
This server uses Google Custom Search to provide search functionality for Kubernetes documentation. The Custom Search Engine ID (cx) used is the one used by kubernetes.io itself:
- Custom Search Engine ID:
013288817511911618469:elfqqbqldzg
API Limits
The Google Custom Search API has the following limits:
- Free tier: 100 queries per day
- $5 per 1000 queries after that
- Maximum of 10 results per query
Source & license
This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: ryu1maniwa
- Source: ryu1maniwa/kubernetes-documentation-mcp-server
- License: Apache-2.0
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.