MCP server for Operator SDK - enables AI assistants to build Kubernetes operators
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"operator-sdk-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A Model Context Protocol (MCP) server that enables AI assistants to interact with the Operator SDK for Kubernetes operator development.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in ai-ml / cloud
Persistent memory using a knowledge graph
MCP Server for GCP environment for interacting with various Observability APIs.
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
An open-source AI agent that brings the power of Gemini directly into your terminal.
MCP Security Weekly
Get CVE alerts and security updates for Operator Sdk Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Model Context Protocol (MCP) server that enables AI assistants to interact with the Operator SDK for Kubernetes operator development.
This server exposes operator-sdk commands as MCP tools, allowing you to build, test, and manage Kubernetes operators through natural language conversations with AI assistants.
The Operator SDK is powerful but has many commands with complex flags. This MCP server lets you:
operator-sdk init flagsrun bundlerun_bundle operationsVerify operator-sdk is installed:
operator-sdk version
git clone https://github.com/operator-framework/operator-sdk-mcp-server.git
cd operator-sdk-mcp-server
make build
The binary will be created at bin/operator-sdk-mcp-server.
git clone https://github.com/operator-framework/operator-sdk-mcp-server.git
cd operator-sdk-mcp-server
make install
This installs the binary to $GOPATH/bin/operator-sdk-mcp-server.
Add this to your configuration file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Linux: ~/.config/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"operator-sdk": {
"command": "/absolute/path/to/operator-sdk-mcp-server",
"args": [
"--read-only=false",
"--working-dir=/path/to/your/operator"
]
}
}
}
Important: Use absolute paths! Example:
{
"mcpServers": {
"operator-sdk": {
"command": "/Users/yourname/go/bin/operator-sdk-mcp-server",
"args": [
"--read-only=false",
"--working-dir=/Users/yourname/projects/my-operator"
]
}
}
}
For other MCP-compatible clients, configure the server with:
operator-sdk-mcp-server binary| Flag | Default | Description |
|---|---|---|
--working-dir | . | Working directory for operator-sdk commands |
--read-only | true | Prevents write operations (create, modify, delete) |
--toolsets | init,api,bundle,scorecard,run | Comma-separated list of enabled toolsets |
init_operator, init_go, init_ansible, init_helm)create_api, create_webhook)generate_bundle, validate_bundle, generate_kustomize)run_scorecard)run_bundle,