Rover MCP Server
Provides tools for retrieving information about Red Hat internal groups by name, offering secure access to Red Hat's internal groups API through client certificate authentication.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Rover MCP Serverget details for the engineering team group"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Rover MCP Server
MCP (ModelContextProvider) server for querying Red Hat internal groups API using client certificate authentication.
Features
rover_group: Retrieve information about Red Hat internal groups by name
Client certificate authentication for secure API access
Proper error handling for common scenarios (404, 403, certificate issues)
Related MCP server: OpenFGA MCP
Prerequisites
Client certificate (
sa-cert.crt) and private key (privkey.pem) filesAccess to Red Hat internal groups API
Building locally
To build the container image locally using Podman, run:
podman build -t rover-mcp:latest .This will create a local image named rover-mcp:latest that you can use to run the server.
Running with Podman or Docker
Example configuration for running with Podman:
{
"mcpServers": {
"rover": {
"command": "podman",
"args": [
"run",
"-i",
"--rm",
"-v", "./sa-cert.crt:/app/sa-cert.crt:ro",
"-v", "./privkey.pem:/app/privkey.pem:ro",
"-e", "CERT_FILE=/app/sa-cert.crt",
"-e", "KEY_FILE=/app/privkey.pem",
"-e", "MCP_TRANSPORT=stdio",
"localhost/rover-mcp:latest"
],
"env": {
"MCP_TRANSPORT": "stdio"
}
}
}
}Tools
rover_group
Retrieve information about a Red Hat internal group.
Parameters:
group_name(string, required): The name of the group to retrieve information for
Example usage:
# Using the equivalent curl command that this tool replicates:
curl -H "Accept: application/json" --cert sa-cert.crt --key privkey.pem \
-X GET https://internal-groups.iam.redhat.com/v1/groups/<group-name-test>Returns:
Success: Group information as JSON
Error cases:
Group not found (404)
Access denied (403)
Certificate file missing
Other HTTP errors
Environment Variables
CERT_FILE: Path to the client certificate file (default:sa-cert.crt)KEY_FILE: Path to the private key file (default:privkey.pem)MCP_TRANSPORT: Transport method for MCP communication (default:stdio)
Local Development
Ensure you have the required certificate files in the project directory
Install dependencies:
pip install -r requirements.txtRun the server:
python mcp_server.py
Security Notes
Keep certificate and private key files secure
Never commit certificate files to version control
Use read-only volume mounts when running in containers
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseBqualityBmaintenanceA Model Context Protocol server that provides tools to manage Keycloak users and realms, allowing you to create and delete users, list available realms, and view users in specific realms.44746MIT
- Alicense-qualityFmaintenanceAn experimental Model Context Protocol server that enables Large Language Models to read, search, and manipulate OpenFGA authorization stores, unlocking fine-grained access control for agentic AI and natural language interactions.10Apache 2.0
- AlicenseBqualityDmaintenanceA Model Context Protocol server that enables management of Keycloak users and realms through a standardized interface, providing tools for user creation, deletion, role assignment, and group management.95713MIT
- Flicense-qualityDmaintenanceA Model Context Protocol server that exposes SQL Server metadata and read-only query execution as a structured HTTP API, with safety validation and allowlist policy enforcement.1
Related MCP Connectors
A Model Context Protocol server for Wix AI tools
MCP (Model Context Protocol) server for Appwrite
The official MCP Server from Mia-Platform to interact with Mia-Platform Console
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/redhat-community-ai-tools/rover-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server