Overview
mg-mcp-server is a server designed for OpenShift Must-gather, which is a tool used to collect diagnostic information from OpenShift clusters.
To use mg-mcp-server, deploy it within your OpenShift environment and configure it to gather the necessary diagnostic data from your cluster.
- Collects diagnostic information from OpenShift clusters - Integrates seamlessly with OpenShift Must-gather - Provides a centralized server for data collection
- Gathering logs and metrics for troubleshooting OpenShift issues
- Collecting configuration data for audits and compliance
- Assisting in performance tuning by analyzing gathered data
Add to your AI client
Use these steps to connect mg-mcp-server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"mg-mcp-server-mjace": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mg-mcp-server-mjace"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"mg-mcp-server-mjace": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mg-mcp-server-mjace"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mg-mcp-server-mjace": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mg-mcp-server-mjace"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mg-mcp-server-mjace": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mg-mcp-server-mjace"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mg-mcp-server-mjace": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mg-mcp-server-mjace"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mg-mcp-server-mjace": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mg-mcp-server-mjace"
]
}
}
}FAQ
What is OpenShift Must-gather?
OpenShift Must-gather is a tool that helps collect diagnostic information from OpenShift clusters to assist in troubleshooting.
How do I deploy mg-mcp-server?
You can deploy mg-mcp-server by following the instructions in the GitHub repository.
Is mg-mcp-server free to use?
Yes! mg-mcp-server is open-source and free to use.