This project is meant as a bachelors thesis about MCP servers in RHOAI
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"mcp-server-rhoai": {
"command": "/home/amaly/mcp-server-rhoai/mcp-server-rhoai"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
This project implements a Model Context Protocol (MCP) server for managing Red Hat OpenShift AI (RHOAI) workbenches. It provides tools for listing, creating, and managing workbenches, images, hardware profiles, and storage in OpenShift clusters, also it provides tools for monitoring resource consumption by workbenches per user, workbench, namespace or cluster. This project is part of a Bachelor's thesis.
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 ai-ml / devops
Persistent memory using a knowledge graph
Dynamic problem-solving through sequential thought chains
MCP server for using the GitLab API
Workspace template + MCP server for Claude Code, Codex CLI, Cursor & Windsurf. Multi-agent knowledge engine (ag-refresh / ag-ask) that turns any codebase into a queryable AI assistant.
MCP Security Weekly
Get CVE alerts and security updates for Mcp Server Rhoai Workbenches and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
This project implements a Model Context Protocol (MCP) server for managing Red Hat OpenShift AI (RHOAI) workbenches. It provides tools for listing, creating, and managing workbenches, images, hardware profiles, and storage in OpenShift clusters, also it provides tools for monitoring resource consumption by workbenches per user, workbench, namespace or cluster. This project is part of a Bachelor's thesis.
oc CLI logged in to your clustergit clone https://github.com/amaly/mcp-server-rhoai.git
cd mcp-server-rhoai
go mod download
oc login <your-cluster-url>
The project includes a Makefile for easy building:
# Build with linting and testing (recommended)
make build
# Build without running lint and tests (faster)
go build -o mcp-server-rhoai
The build process will:
mcp-server-rhoai./mcp-server-rhoaiThe project has a comprehensive unit test suite (60 tests across 7 test files) covering every tool module. Tests use Kubernetes fake clients (dynamicfake.NewSimpleDynamicClient) and function-variable mocking to isolate logic from live cluster dependencies, so no running cluster is needed.
Run tests using Make or directly with Go:
# Run all tests with Make
make test
# Run tests directly with verbose output
go test -v ./tools/... ./resources/... ./prompts/...
Test coverage includes:
Each tool module has a dedicated *_test.go file with both success and error-path cases. Table-driven subtests are used where multiple input variations need to be verified.
Uses Promptfoo for testing tool selection accuracy.
export GOOGLE_API_KEY=your-key-here
make eval # run tests
make eval-view # run and open results in browser
Tool descriptions must be explicit for model-agnostic compatibility:
omitempty and describe defaults in jsonschema descriptionsThe MCP server can be configured in AI assistants to enable workbench management through natural language.
make build
Open MCP Settings in Cursor:
Ctrl + Shift + P (Windows/Linux) or Cmd + Shift + P (Mac)Add configuration:
Read-only mode (default, safer):
{
"mcpServers": {
"mcp-server-rhoai": {
"command": "/home/amaly/mcp-server-rhoai/mcp-server-rhoai"
}
}
}
**Read-write