Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions ocp-admin/.mcp.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"mcpServers": {
"openshift": {
"command": "podman",
"args": [
"run",
"--rm",
"-i",
"--network=host",
"--userns=keep-id:uid=65532,gid=65532",
"-v", "${KUBECONFIG}:/kubeconfig:ro,Z",
"--entrypoint", "/app/kubernetes-mcp-server",
"quay.io/ecosystem-appeng/openshift-mcp-server:latest",
"--kubeconfig", "/kubeconfig",
"--read-only",
"--toolsets", "core,config"
],
"env": {
"KUBECONFIG": "${KUBECONFIG}"
},
"description": "Red Hat OpenShift MCP server for multi-cluster administration and reporting",
"security": {
"isolation": "container",
"network": "local",
"credentials": "env-only"
}
}
}
}
15 changes: 15 additions & 0 deletions ocp-admin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,18 @@ Administration and management tools for OpenShift Container Platform. This pack

**Persona**: OpenShift Administrator
**Marketplaces**: Claude Code, Cursor

## Skills

| Command | Description |
| ------- | ----------- |
| `/cluster-report` | Generate a consolidated health report across multiple OpenShift clusters (nodes, CPU, memory, GPUs, namespaces, pods) |

## Prerequisites

- OpenShift cluster access via `KUBECONFIG`
- For multi-cluster reports, a kubeconfig with multiple contexts

## MCP Servers

- **openshift** - OpenShift cluster management with multi-cluster support
Loading