Skip to main content
ClaudeWave

Mimi Ops is an opinionated MCP server for Kubernetes

MCP ServersRegistry oficial0 estrellas0 forksGoApache-2.0Actualizado today
ClaudeWave Trust Score
95/100
Verified
Passed
  • Open-source license (Apache-2.0)
  • Actively maintained (<30d)
  • Clear description
  • Topics declared
  • Documented (README)
Last scanned: 8/22/2026
Install in Claude Code / Claude Desktop
Method: Manual · mimiops-mcp
Claude Code CLI
git clone https://github.com/sergelogvinov/mimiops-mcp
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "mimiops-mcp": {
      "command": "mimiops-mcp"
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
💡 Install the binary first: go install github.com/sergelogvinov/mimiops-mcp@latest (make sure it ends up on your PATH).
Casos de uso

Resumen de MCP Servers

# Mimiops MCP Server

## Motivation

There are many ways to manage Kubernetes workloads, but there are also many ways to break them by accident.
We have already seen cases where AI agents did something that we did not expect. Giving an AI agent full access to Kubernetes can be risky, especially when it can create, update, or delete resources directly.

In my opinion, we need to provide safe and well-defined tools for AI agents. These tools should limit what an agent can do, validate changes before applying them, and help prevent dangerous operations.

We also need tools that can help investigate and fix workload issues.
Many workloads are already managed by well-known tools such as Argo CD, FluxCD, Helm, and other GitOps or deployment systems.
An AI agent should understand who manages a resource and avoid making direct changes that can conflict with these tools.

The goal is not to give AI full control of Kubernetes.
The goal is to give AI a safe interface that allows it to understand problems, suggest changes, and perform only controlled operations.

## Overview

Mimi OPS is not designed to give AI agents unrestricted Kubernetes access.
Instead, it provides a small set of well-known and controlled operations.

The agent can observe, investigate, and perform a limited number of safe recovery actions. More dangerous operations, such as editing arbitrary resources, applying YAML, changing secrets, or deleting persistent data are strongly restricted.

This makes Mimi OPS an opinionated interface between AI agents and Kubernetes: powerful enough for common troubleshooting, but limited enough to reduce the risk of unexpected changes.

### Kubernetes basic tools:

- Pods
  - list — list pods and their current status.
  - get — get detailed information about a pod.
  - describe — inspect pod status, conditions, events, and related information.
  - logs — read container logs for troubleshooting.
  - delete — safely restart a workload by deleting a pod and allowing its controller to recreate it.
- CronJobs and Jobs
  - list — list CronJobs and Jobs.
  - get — get information about a specific resource.
  - describe — inspect status, conditions, events, and failures.
- Deployments, StatefulSets, and DaemonSets
  - list — list workloads and their current status.
  - get — get information about a specific workload.
  - describe — inspect replicas, rollout status, conditions, and related events.

### Helm integration

Mimi OPS can inspect Helm-managed workloads and help recover them when a deployment fails:

- list — list Helm releases.
- describe — show release information, status, revision, and related resources.
- rollback — roll back a release to a previous working revision when the current release is in a broken state.

### FluxCD integration

Mimi OPS can work with FluxCD-managed resources without directly changing resources that are controlled by GitOps:

- Reconcile Flux source resources to fetch the latest configuration.
- Reconcile HelmRelease resources to retry or apply the expected Helm state.
- Inspect reconciliation status and errors to understand why a deployment is not ready.

## Installation

A Kubernetes **MCP (Model Context Protocol)** server written in Go.
It exposes Kubernetes operations to MCP clients (Claude Desktop, Cursor, VS Code, etc.) over two transports:

- `mimiops-mcp mcp` — **stdio**, for desktop MCP clients.
- `mimiops-mcp server` — **HTTP/SSE**, for web/remote MCP clients.

## Running

### Common flags

Flags are **global (persistent)** and accepted on both subcommands:

| Flag | Default | Description |
|------|---------|-------------|
| `--kubeconfig <path>` | auto | Path to kubeconfig (defaults to `$KUBECONFIG` then `~/.kube/config`) |
| `--context <name>` | current-context | Kubernetes context to use |
| `--namespace <name>` | all namespaces | Scope operations to a namespace |
| `--allow-destructive` | `false` | Enable destructive tools (e.g. `pods_delete`) |
| `--log-level <level>` | `info` | `debug`, `info`, `warn`, `error` |

Per-command flags:

| Command | Flag | Default | Description |
|---------|------|---------|-------------|
| `server` | `--port` | `8080` | HTTP/SSE listen port |

### Examples

```sh
# stdio against a specific context
./bin/mimiops-mcp mcp --kubeconfig ~/.kube/dev.yaml --context prod-east

# SSE server scoped to a namespace, with destructive tools enabled
./bin/mimiops-mcp server --namespace default --allow-destructive --port 8080
```

## Development

```sh
make lint       # golangci-lint
make unit       # unit tests (build tag `unit`)
make test       # lint + unit
make licenses   # license audit (forbidden/restricted/unknown)
make docs       # (Docker image docs targets are also available; see `make help`)
```

Use `make help` for a full target list.

## License

[Apache-2.0](LICENSE)
kuberneteskubernetes-mcpmcpmodel-context-protocolmodelcontextprotocol

Lo que la gente pregunta sobre mimiops-mcp

¿Qué es sergelogvinov/mimiops-mcp?

+

sergelogvinov/mimiops-mcp es mcp servers para el ecosistema de Claude AI. Mimi Ops is an opinionated MCP server for Kubernetes Tiene 0 estrellas en GitHub y su última actualización registrada es del 2026-08-21.

¿Cómo se instala mimiops-mcp?

+

Puedes instalar mimiops-mcp clonando el repositorio (https://github.com/sergelogvinov/mimiops-mcp) o siguiendo las instrucciones del README en GitHub. ClaudeWave también te ofrece bloques de instalación rápida en esta misma página.

¿Es seguro usar sergelogvinov/mimiops-mcp?

+

Nuestro agente de seguridad ha analizado sergelogvinov/mimiops-mcp y le ha asignado un Trust Score de 95/100 (tier: Verified). Revisa el desglose completo de comprobaciones superadas y flags en esta página.

¿Quién mantiene sergelogvinov/mimiops-mcp?

+

sergelogvinov/mimiops-mcp es mantenido por sergelogvinov. La última actividad registrada en GitHub es del 2026-08-21, con 1 issues abiertos.

¿Hay alternativas a mimiops-mcp?

+

Sí. En ClaudeWave puedes explorar mcp servers similares en /categories/mcp, ordenados por popularidad o actividad reciente.

Despliega mimiops-mcp en tu cloud

Lleva este repo a producción en minutos. Cada plataforma genera su propio entorno con variables de entorno editables.

¿Mantienes este repo? Añade un badge a tu README

Pega el badge en tu README de GitHub para mostrar que está auditado por ClaudeWave. Cada badge enlaza de vuelta a esta página y muestra el Trust Score actual.

Featured on ClaudeWave: sergelogvinov/mimiops-mcp
[![Featured on ClaudeWave](https://claudewave.com/api/badge/sergelogvinov-mimiops-mcp)](https://claudewave.com/repo/sergelogvinov-mimiops-mcp)
<a href="https://claudewave.com/repo/sergelogvinov-mimiops-mcp"><img src="https://claudewave.com/api/badge/sergelogvinov-mimiops-mcp" alt="Featured on ClaudeWave: sergelogvinov/mimiops-mcp" width="320" height="64" /></a>

Más MCP Servers

Alternativas a mimiops-mcp