mcp-redfish
Provides tools for managing Dell PowerEdge servers via iDRAC Redfish API, including power control, thermal monitoring, and firmware inventory.
Provides tools for managing Lenovo ThinkSystem servers via XCC Redfish API, including power control, thermal monitoring, and firmware inventory.
Provides tools for managing Supermicro servers via BMC Redfish API, including power control, thermal monitoring, and firmware inventory.
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., "@mcp-redfishWhat is the current power state and health of all systems?"
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.
mcp-redfish
A Model Context Protocol (MCP) server for Redfish-compatible BMC management, providing AI assistants with access to server hardware monitoring and control through the DMTF Redfish REST API.
Supported Hardware
Vendor | BMC / Interface |
Dell | PowerEdge iDRAC (iDRAC8, iDRAC9, iDRAC10) |
HPE | ProLiant iLO (iLO4, iLO5, iLO6) |
Lenovo | ThinkSystem XClarity Controller (XCC) |
Supermicro | BMC (IPMI/Redfish) |
Any vendor | DMTF Redfish 1.x compliant BMC |
Related MCP server: Redfish MCP Server
Features
20 tools across six categories:
Systems
Tool | Description |
| List all computer systems with Name, Model, PowerState, Health, memory, and CPU summary |
| Get full system details including BiosVersion, HostName, IndicatorLED, and Boot settings |
| Power on/off/reboot a system (On, ForceOff, GracefulShutdown, GracefulRestart, ForceRestart, Nmi) |
| Get current BIOS attributes and configuration |
Chassis
Tool | Description |
| List chassis with ChassisType, Manufacturer, Model, SerialNumber, and Status |
| Get full chassis details |
| Get temperatures and fan speeds with thresholds and health status |
| Get power supply status and current consumption in watts |
Managers (BMC)
Tool | Description |
| List BMC managers with ManagerType, FirmwareVersion, and Status |
| Get full manager details |
| Gracefully restart the BMC |
| Get BMC protocol settings (IPMI, SSH, HTTPS enabled/disabled, ports) |
Storage
Tool | Description |
| List storage controllers with model, firmware, supported RAID types, and health |
| List physical drives with capacity, protocol (SAS/SATA/NVMe), MediaType (SSD/HDD), and health |
Event Log
Tool | Description |
| Get system event log entries with Severity, Message, and timestamp. Auto-discovers log path. |
| Clear the event log (irreversible) |
Firmware
Tool | Description |
| List all firmware versions (BIOS, BMC, NICs, storage controllers, PSUs, etc.) |
Installation
git clone git@github.com:fredriksknese/mcp-redfish.git
cd mcp-redfish
npm install
npm run buildConfiguration
The server is configured via environment variables:
Variable | Required | Default | Description |
| Yes | — | BMC hostname or IP address |
| No |
| BMC username |
| Yes | — | BMC password |
| No |
| Accept self-signed TLS certificates (normal for BMCs) |
Authentication uses Redfish session tokens by default (POST to SessionService, stores X-Auth-Token). Falls back to HTTP Basic auth if session creation fails.
Usage with Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"redfish": {
"command": "node",
"args": ["/absolute/path/to/mcp-redfish/dist/index.js"],
"env": {
"REDFISH_HOST": "192.168.1.100",
"REDFISH_USERNAME": "root",
"REDFISH_PASSWORD": "your-bmc-password"
}
}
}
}Usage with Claude Code
claude mcp add redfish -- node /absolute/path/to/mcp-redfish/dist/index.jsSet the required environment variables in your MCP settings.
Example Prompts
Once connected, you can ask your AI assistant things like:
"What is the current power state and health of all systems?"
"Show me all temperature sensors and flag any that are above normal thresholds"
"What firmware versions are installed and which components can be updated?"
"Check the system event log for any critical errors in the last 24 hours"
"List all drives including their capacity, type (SSD/HDD), and health"
"What is the current power consumption in watts?"
"Show me the BMC network protocol settings — is IPMI enabled?"
"Gracefully restart this server"
"Clear the system event log"
"What is the BIOS version and current boot order?"
Development
npm run dev # Run with tsx (no build required)
npm run build # Compile TypeScript to dist/
npm start # Run compiled outputArchitecture
src/
├── index.ts # Entry point — creates MCP server + STDIO transport
├── redfish-client.ts # HTTP client with session/basic auth and @odata.id expansion
└── tools/
├── systems.ts # Computer system management (4 tools)
├── chassis.ts # Chassis, thermal, and power (4 tools)
├── managers.ts # BMC manager management (4 tools)
├── storage.ts # Storage controllers and drives (2 tools)
├── eventlog.ts # Event log read and clear (2 tools)
└── firmware.ts # Firmware inventory (1 tool)Requirements
Node.js 18+
A DMTF Redfish 1.x compliant BMC (Dell iDRAC, HPE iLO, Lenovo XCC, Supermicro BMC, or any standards-compliant BMC)
License
SEE LICENSE IN LICENSE
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.
Latest Blog Posts
- 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/fredriksknese/mcp-redfish'
If you have feedback or need assistance with the MCP directory API, please join our Discord server