{
"mcpServers": {
"kueue-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 298 days ago.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
MCP Security Weekly
Get CVE alerts and security updates for Kueue Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Kueue MCP Server is a Go application that provides a set of Mark3 Labs MCP tools for OpenShift and Kueue troubleshooting and support automation. It exposes tools via an MCP server, allowing automated collection of cluster diagnostics and explanations for job and queue scheduling issues.
oc adm must-gather with custom arguments to collect comprehensive cluster diagnostics.kubectl describe clusterqueue.To build the server binary:
make
# or manually:
go build -o kueue-mcp-server main.go
Start the server (by default, it uses stdio for communication):
./kueue-mcp-server
The server will listen for MCP tool requests via stdio.
oc.kubectl.mcp.NewTool and registering them in RegisterTools.mcp.CallToolResult.oc and kubectl CLIs in the environment where the server runs.Collects cluster data for support:
dest_dir: Directory to write gathered data.extra_args: Additional arguments for oc adm must-gather.Explains why no workloads are admitted in a ClusterQueue:
cluster_queue_name: Name of the ClusterQueue.To use the Kueue MCP Server as a custom MCP tool in your Claude Desktop configuration:
Build and run the server
Make sure the kueue-mcp-server binary is built and available on your system. Start the server so it listens for stdio requests:
./kueue-mcp-server
Add the tool to your Claude Desktop config
{
"mcpServers": {
"kubernetes": {
"command": "npx",
"args": [
"-y",
"kubernetes-mcp-server@latest"
]
},
"kueue-mcp-server": {
"command": "/path/to/kueue-mcp-server"
}
}
/path/to/kueue-mcp-server with the full path to your built binary.stdin and stdout are enabled so Claude Desktop can communicate with the server.Restart Claude Desktop
After updating the configuration, restart Claude Desktop to load the new tool.
Use the tool
The Kueue MCP Server tools (such as must-gather and cluster queue status) will now be available in Claude Desktop’s tool palette.