Kom MCP Server

`kom` 是一个用于 Kubernetes 操作的工具,相当于SDK级的kubectl、client-go的使用封装。 它提供了一系列功能来管理 Kubernetes 资源,包括创建、更新、删除和获取资源。这个项目支持多种 Kubernetes

Local serverstdioGo

What is the Kom MCP server?

kom 是一个用于 Kubernetes 操作的工具,相当于SDK级的kubectl、client-go的使用封装。 它提供了一系列功能来管理 Kubernetes 资源,包括创建、更新、删除和获取资源。这个项目支持多种 Kubernetes 资源类型的操作,并能够处理自定义资源定义(CRD)。 通过使用. Exposed over MCP by the kom mcp server, that capability becomes something an assistant can invoke while it works, not something you go and do afterwards.

What it actually does

// 注册 AWS EKS 集群 _, err := kom.Clusters().RegisterAWSCluster(config) if err != nil { fmt.Printf("注册 EKS 集群失败: %v", err) return }

Its toolset

Everything the assistant can do here goes through one of these:

  • AccessKey — AWS 访问密钥 ID
  • SecretAccessKey — AWS 秘密访问密钥
  • Region — AWS 区域,如 us-east-1、ap-southeast-1 等
  • ClusterName — EKS 集群名称
  • RoleARN — (可选) 要承担的 IAM 角色 ARN,用于跨账户访问
  • name — example-container

Adding it to your client

Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client. The configuration blocks on this page cover the common clients.

When to reach for it

Among the cloud and infrastructure options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Kom's toolset — AccessKey, SecretAccessKey, Region and 3 more — is a fair guide to whether it matches your workflow. It is maintained by weibaohui; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Kom's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Caveats

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the kom mcp server does with a few real requests.

Available tools

ToolWhat it does
AccessKeyAWS 访问密钥 ID
SecretAccessKeyAWS 秘密访问密钥
RegionAWS 区域,如 us-east-1、ap-southeast-1 等
ClusterNameEKS 集群名称
RoleARN(可选) 要承担的 IAM 角色 ARN,用于跨账户访问
nameexample-container

How to install the Kom MCP server

{
  "mcpServers": {
    "kom": {
      "type": "sse",
      "url": "http://IP:9096/sse"
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Example prompts to try

  • Use Kom to AccessKey.
  • Use Kom to SecretAccessKey.
  • Use Kom to Region.

Frequently asked questions

It connects Kom to MCP-compatible AI assistants such as Claude and Cursor, exposing 6 tools (AccessKey, SecretAccessKey, Region, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Kom directly.