Skip to content

Add KubeStellar Console MCP server to Kubernetes config#347

Open
clubanderson wants to merge 3 commits intorohitg00:mainfrom
clubanderson:add-kubestellar-console
Open

Add KubeStellar Console MCP server to Kubernetes config#347
clubanderson wants to merge 3 commits intorohitg00:mainfrom
clubanderson:add-kubestellar-console

Conversation

@clubanderson
Copy link
Copy Markdown

@clubanderson clubanderson commented Apr 26, 2026

Adds KubeStellar Console to the Kubernetes MCP config and All Plugins table.

What is KubeStellar Console?

KubeStellar Console is an open-source multi-cluster Kubernetes dashboard with a built-in MCP server (kc-agent) that bridges AI agents to Kubernetes clusters. It provides:

  • 50+ dashboard cards — cluster health, workloads, RBAC, compliance, CI/CD, AI/ML ops
  • Multi-cluster management — manage workloads and policies across clusters via KubeStellar
  • MCP server (kc-agent) — enables Claude, Copilot, and other AI agents to interact with Kubernetes clusters
  • Real-time WebSocket streaming — live updates from clusters
  • CNCF KubeStellar ecosystem — part of the KubeStellar project (CNCF Sandbox)

Changes

  1. mcp-configs/kubernetes.json — Added kubestellar-console MCP server entry
  2. README.md — Added entry to All Plugins table and updated Kubernetes MCP config description

The MCP server runs via go run github.com/kubestellar/console/cmd/kc-agent@latest and bridges Claude Code to your kubeconfig clusters for managing workloads, policies, RBAC, and compliance.

Live demo: console.kubestellar.io

Summary by CodeRabbit

  • New Features

    • Added KubeStellar Console plugin providing a multi-cluster Kubernetes dashboard with built-in MCP server support for managing workloads, policies, RBAC, and compliance.
  • Documentation

    • Updated README and MCP configuration listings to include KubeStellar Console, add one curated MCP configuration, and show the console alongside existing Kubernetes MCP servers in the "Servers Included" list.

Add kubestellar-console to the Kubernetes MCP config and All Plugins
table. KubeStellar Console provides a multi-cluster Kubernetes dashboard
with a built-in MCP server (kc-agent) that bridges AI agents (Claude,
Copilot) to Kubernetes clusters for managing workloads, policies, RBAC,
and compliance.

Signed-off-by: clubanderson <clubanderson@users.noreply.github.com>
@coderabbitai
Copy link
Copy Markdown

coderabbitai Bot commented Apr 26, 2026

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro

Run ID: 411d8c5a-e766-474a-9e95-743ba6b3845e

📥 Commits

Reviewing files that changed from the base of the PR and between 48b0b41 and ac81ce7.

📒 Files selected for processing (1)
  • mcp-configs/kubernetes.json
🚧 Files skipped from review as they are similar to previous changes (1)
  • mcp-configs/kubernetes.json

📝 Walkthrough

Walkthrough

Adds a new KubeStellar Console MCP server configuration to the Kubernetes MCP configs and updates the README to feature KubeStellar Console and include it in the Kubernetes MCP config's "Servers Included" list. (50 words max)

Changes

Cohort / File(s) Summary
Documentation
README.md
Inserted kubestellar-console into the featured plugins list and added it to the Kubernetes MCP config's "Servers Included" list.
MCP Config (new server + formatting)
mcp-configs/kubernetes.json
Added mcpServers.kubestellar-console with command: "kc-agent", empty args: [], and required env vars KC_ALLOWED_ORIGINS and KC_AGENT_TOKEN; reformatted several mcpServers.*.args entries from single-line arrays to multi-line arrays without changing values; updated KubeStellar description for multi-cluster support.

Estimated code review effort

🎯 3 (Moderate) | ⏱️ ~20 minutes

Poem

🐰 I nudged a config, added a console bright,
A tiny agent wakes to multicluster light,
Env vars tucked in, args aligned with care,
Dashboards hum softly — clusters share the air,
The rabbit giggles: one more server in the hare.

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title accurately describes the main change: adding KubeStellar Console MCP server to the Kubernetes configuration file, which is the primary modification evident in the changeset.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

Copy link
Copy Markdown

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🧹 Nitpick comments (1)
README.md (1)

889-889: Description update matches the JSON change.

Note: the section header on line 883 still reads "Thirteen curated Model Context Protocol server configurations" while the table below lists 14 rows. That's a pre-existing inconsistency rather than something this PR introduced, but since you're touching this section it may be worth fixing in the same PR for tidiness.

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@README.md` at line 889, The section header text "Thirteen curated Model
Context Protocol server configurations" is inconsistent with the table that now
lists 14 rows; update the header to match the actual count (e.g., "Fourteen
curated Model Context Protocol server configurations") or otherwise make the
header plural/unspecified to avoid a hardcoded number; edit the README header
string to reflect this change so the header and the table (which includes the
Kubernetes row referencing `kubernetes.json`) are consistent.
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Inline comments:
In `@mcp-configs/kubernetes.json`:
- Around line 13-17: Change the "kubestellar-console" entry to avoid using the
non-reproducible and slow "go run
github.com/kubestellar/console/cmd/kc-agent@latest": either use the
Homebrew-installed binary by setting "command" to "kc-agent" (after documenting
the brew tap/install: brew tap kubestellar/tap && brew install kc-agent) or
document the official start.sh installation path as an alternative; additionally
add documentation/config for required kube/auth parameters (support --kubeconfig
or default ~/.kube/config and include environment variables KC_ALLOWED_ORIGINS
and KC_AGENT_TOKEN similar to the existing "github" entry) so users know how to
supply creds and allowed origins when running kc-agent.

---

Nitpick comments:
In `@README.md`:
- Line 889: The section header text "Thirteen curated Model Context Protocol
server configurations" is inconsistent with the table that now lists 14 rows;
update the header to match the actual count (e.g., "Fourteen curated Model
Context Protocol server configurations") or otherwise make the header
plural/unspecified to avoid a hardcoded number; edit the README header string to
reflect this change so the header and the table (which includes the Kubernetes
row referencing `kubernetes.json`) are consistent.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro

Run ID: 4344ccd0-37e3-441e-8ae3-6c7e568bb5ba

📥 Commits

Reviewing files that changed from the base of the PR and between 659efb0 and 8af913b.

📒 Files selected for processing (2)
  • README.md
  • mcp-configs/kubernetes.json

Comment thread mcp-configs/kubernetes.json
Addresses CodeRabbit review  the table now lists 14 MCPnitpick
server configurations after adding KubeStellar Console.

Signed-off-by: clubanderson <clubanderson@users.noreply.github.com>
@clubanderson
Copy link
Copy Markdown
Author

Fixed — updated the section header from "Thirteen" to "Fourteen" to match the actual table row count. Thanks for the catch!

- Changed command from 'go run ...@latest' to 'kc-agent' binary
- Added KC_ALLOWED_ORIGINS and KC_AGENT_TOKEN env vars
- Added Homebrew install instructions in description
- Documents kubeconfig default (~/.kube/config)

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Signed-off-by: clubanderson <clubanderson@users.noreply.github.com>
@clubanderson
Copy link
Copy Markdown
Author

Addressed CodeRabbit feedback:

1 Switched to kc-agent binary — replaced go run ...@latest with the Homebrew-installable kc-agent binary (brew tap kubestellar/tap && brew install kc-agent).
2. ✅ Added env varsKC_ALLOWED_ORIGINS and KC_AGENT_TOKEN now documented in the config, matching the pattern used by the GitHub entry
3. ✅ Kubeconfig documentation — install description notes that kc-agent uses ~/.kube/config by default

Thanks for the thorough review!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant