Kubernetes MCP Server

Created By
reza-gholizadea year ago
Manage Your Kubernetes Cluster with k8s mcp-server
Overview

What is Kubernetes MCP Server?

Kubernetes MCP Server is a Model Control Plane (MCP) server that provides tools for interacting with Kubernetes clusters through a standardized interface.

How to use Kubernetes MCP Server?

To use the Kubernetes MCP Server, clone the repository, install dependencies, build the server, and run it to listen for MCP protocol messages.

Key features of Kubernetes MCP Server?

  • API Resource Discovery: Get all available API resources in your Kubernetes cluster.
  • Resource Listing: List resources of any type with optional namespace and label filtering.
  • Resource Details: Get detailed information about specific Kubernetes resources.
  • Resource Description: Get comprehensive descriptions of Kubernetes resources.
  • Standardized Interface: Uses the MCP protocol for consistent tool interaction.
  • Flexible Configuration: Supports different Kubernetes contexts and resource scopes.

Use cases of Kubernetes MCP Server?

  1. Discovering available API resources in a Kubernetes cluster.
  2. Listing and filtering Kubernetes resources based on specific criteria.
  3. Retrieving detailed information and descriptions of Kubernetes resources.
  4. Accessing logs of specific pods in the cluster.

FAQ from Kubernetes MCP Server?

  • What are the prerequisites for using the Kubernetes MCP Server?

You need Go 1.20 or later, access to a Kubernetes cluster, and kubectl configured with appropriate cluster access.

  • How do I start the server?

Run the command ./k8s-mcp-server after building the server to start listening for MCP protocol messages.

  • Can I add new tools to the server?

Yes! You can add new tools by creating a new tool definition function and implementing the handler in the project.

Server Config

{
  "mcpServers": {
    "k8s-tools": {
      "command": "/PATH_TO_MCP_SERVER/k8s-mcp-server",
      "args": []
    }
  }
}
Project Info
Created At
a year ago
Updated At
a year ago
Author Name
reza-gholizade
Star
23
Language
Go
License
MIT license
Category

Recommend Servers

View All
Tatsu55

4 hours ago
Docwand

2 days ago
Wpnews

a day ago
Orkestr

a day ago
Numox

4 hours ago
Numox

5 hours ago
//beforeyouship — LLM Cost Modeling From Your Editor
@Indiegoing

Query realistic LLM cost models without leaving your editor. beforeyouship models the **true monthly cost** of an LLM app architecture — retries, prompt caching, batch discounts, infra overhead, and 3×/10× growth — across GPT-5.x, Claude, Gemini, DeepSeek, and more. Not a token calculator: a planning tool for the design phase, before you commit to a stack. **No API key needed to try it** — demo mode covers the six free-tier models. A Pro key from [beforeyouship.dev](https://beforeyouship.dev) unlocks the full 18-model catalog. ## What you can ask - "How much will a RAG chatbot cost at 10,000 requests/day?" - "Compare Claude Haiku vs Gemini Flash pricing for my workload" - "What's the cheapest model for a multi-step agent at scale?" - "Show me current per-token prices for Anthropic models" ## Tools ### `estimate_cost` Full cost model for an architecture at a given usage level. Returns Naive / Realistic / Worst Case monthly cost per model, 3×/10× growth scenarios, and an opinionated recommendation with reasoning. ### `get_model_prices` Current per-1M-token pricing — input, output, cached input, batch — with context windows and staleness metadata. ### `list_archetypes` Seven preset architecture patterns (simple chatbot, chatbot with history, RAG pipeline, multi-model router, coding assistant, document processor, multi-step agent) used as starting points for estimates. ## Setup **Claude Code:** ​```bash claude mcp add --transport http beforeyouship https://beforeyouship.dev/api/mcp ​``` **Cursor / other clients** — add a remote server: ​```json { "mcpServers": { "beforeyouship": { "type": "streamable-http", "url": "https://beforeyouship.dev/api/mcp" } } } ​``` Add an `Authorization: Bearer bys_...` header with a Pro key for the full catalog. ## Try it > Estimate the monthly cost of a RAG pipeline at 10,000 requests/day

2 days ago