cimc-mcp
An MCP server for managing standalone Cisco C-Series rack servers through the Cisco Integrated Management Controller (CIMC) XML API. It provides 16 tools for server lifecycle management, including power control, hardware health monitoring, and BIOS configuration.
README
cimc-mcp
MCP server for Cisco CIMC (Integrated Management Controller) — manage standalone C-Series rack servers through the XML API.
Features
16 tools covering full server lifecycle management:
| Tool | Description |
|---|---|
get_server_summary |
Power state, model, serial, CPU/memory counts, operability |
get_server_health |
Composite health: DIMMs, PSUs, fans, storage, temps, faults |
get_sensors |
Fan speeds, PSU readings, temperature data |
get_inventory |
CPUs, DIMMs, PCI cards, NICs, storage controllers |
get_faults |
Active faults with severity filtering |
power_control |
Power on/off/cycle/reset/shutdown (confirmation required) |
get_storage_summary |
RAID controllers, virtual drives, physical disks |
get_bios_settings |
All BIOS token values |
set_bios_setting |
Modify BIOS tokens (confirmation required, reboot to apply) |
get_network_adapters |
NICs, MAC addresses, port details |
get_firmware_versions |
CIMC, BIOS, storage controller, NIC firmware |
get_power_stats |
Input voltage, current, consumed power |
get_thermal_stats |
CPU/memory/ambient temps, fan speeds |
get_event_log |
System event log entries |
set_locator_led |
Chassis locator LED on/off |
sol_configure |
Serial over LAN enable/disable/baud rate |
Requirements
- Node.js 22+
- macOS with
/usr/bin/curl(uses system curl for network routing to BMC interfaces) - Network access to CIMC management interface
Setup
git clone https://github.com/schwarztim/cimc-mcp.git
cd cimc-mcp
npm install
npm run build
Environment Variables
cp .env.example .env
# Edit .env with your CIMC credentials
| Variable | Default | Description |
|---|---|---|
CIMC_HOST |
192.168.88.10 |
CIMC BMC IP address |
CIMC_USERNAME |
admin |
Login username |
CIMC_PASSWORD |
(required) | Login password |
CIMC_VERIFY_TLS |
false |
Verify TLS certificates |
CIMC_INTERFACE |
(none) | Local network interface to bind |
Usage
Claude Code
Add to ~/.claude/user-mcps.json:
{
"mcpServers": {
"cimc": {
"command": "node",
"args": ["/path/to/cimc-mcp/dist/index.js"],
"env": {
"CIMC_HOST": "192.168.88.10",
"CIMC_USERNAME": "admin",
"CIMC_PASSWORD": "your-password"
}
}
}
}
Standalone
CIMC_HOST=192.168.88.10 CIMC_USERNAME=admin CIMC_PASSWORD=changeme npm start
How It Works
All communication goes through the CIMC XML API — a single POST endpoint at https://{host}/nuova. The server:
- Authenticates via
aaaLoginto get a session cookie (600s TTL) - Caches and auto-refreshes the session before expiry
- Serializes all requests to avoid overloading the resource-constrained BMC
- Parses XML responses and normalizes single-item/array inconsistencies
macOS Network Note
CIMC BMCs are typically on isolated management networks reachable via a dedicated interface. On macOS, only system binaries (/usr/bin/curl) have the network entitlements to route across interfaces. This server uses system curl as its HTTP transport instead of Node.js https for this reason.
Compatibility
Tested on:
- Cisco UCS C220 M4 (CIMC 2.0(10l))
Should work with any standalone C-Series server running CIMC 2.x or later. UCS Manager-managed servers use a different API and are not supported.
Development
npm run dev # Run with tsx (hot reload)
npm test # Run tests
npm run build # Compile TypeScript
License
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.