Governed MCP server for DMTF Redfish BMCs. Read-only by default; writes are opt-in and dry-run.
Runs locally over stdio
This server isn't hosted — your MCP client launches it from a package registry. Use one of the commands below, or drop the config into your client (e.g. Claude Desktop).
Run
uvx mirastack-redfish-mcp
MCP client config
{
"mcpServers": {
"mirastack-redfish-mcp-server": {
"command": "uvx",
"args": [
"mirastack-redfish-mcp"
]
}
}
}Run
docker run -i --rm docker.io/mirastack/mirastack-redfish-mcp:0.1.1
MCP client config
{
"mcpServers": {
"mirastack-redfish-mcp-server": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"docker.io/mirastack/mirastack-redfish-mcp:0.1.1"
]
}
}
}