Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"kueue-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.
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.
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 cloud / devops
MCP server for using the GitLab API
MCP Server for GCP environment for interacting with various Observability APIs.
⚡ A Simple / Speedy / Secure Link Shortener with Analytics, 100% run on Cloudflare.
Yunxiao MCP Server provides AI assistants with the ability to interact with the Yunxiao platform. It provides a set of tools that interact with Yunxiao's API, allowing AI assistants to manage Codeup repository, Project, Pipeline, Packages etc.
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.