Command Palette

Search for a command to run...

UnylyUnyly
Browse all

System Monitor Server

FreeNot checked

Gives AI agents real-time access to system metrics, process management, and container orchestration.

GitHubEmbed

About

Gives AI agents real-time access to system metrics, process management, and container orchestration.

README

Give your AI agent real-time access to system metrics, process management, and container orchestration.

🚀 Quick Install

Claude Desktop

{
  "mcpServers": {
    "system-monitor": {
      "command": "python",
      "args": ["-m", "server"],
      "env": {
        "PYTHONPATH": "${workspaceFolder}/src"
      }
    }
  }
}

VS Code (Continue)

{
  "experimental": {
    "mcpServers": {
      "system-monitor": {
        "command": "python",
        "args": ["server.py"]
      }
    }
  }
}

Docker

docker build -t system-monitor-mcp .
docker run -v /var/run/docker.sock:/var/run/docker.sock system-monitor-mcp

🛠️ Tools

Tool Description Returns
get_system_load() CPU, memory, swap usage CPU%, Memory%, Swap%, Load avg
get_process_list() Running processes sorted by CPU/memory PID, name, CPU%, memory%, status
get_disk_usage() Disk usage per mount point Mount, total, used, available, usage%
get_docker_status() Docker container status Container name, status, uptime, ports, image
tail_log(path, lines) Tail log files Last N lines with timestamps

💡 Use Cases

  • Self-monitoring — AI agents that monitor their own infrastructure
  • DevOps automation — Deploy, restart, and manage services autonomously
  • Incident response — Detect and diagnose issues in real-time
  • Resource optimization — Analyze usage patterns and suggest cost savings

📋 Requirements

  • Python 3.10+
  • Linux (most features) / macOS (partial) / Windows (limited)
  • Docker (optional — for container monitoring)
  • psutil, mcp, docker-py

🔐 Security

  • Read-only by design — no kill/rm/create operations exposed
  • No root required — runs with user-level permissions
  • Sandboxed log access — path traversal protection built in

Part of the Hermes Agent ecosystem

from github.com/Dev-Herni/system-monitor-mcp

Installing System Monitor Server

This server has no published package — it is built from source. Open the repository and follow its README.

▸ github.com/Dev-Herni/system-monitor-mcp

FAQ

Is System Monitor Server MCP free?

Yes, System Monitor Server MCP is free — one-click install via Unyly at no cost.

Does System Monitor Server need an API key?

No, System Monitor Server runs without API keys or environment variables.

Is System Monitor Server hosted or self-hosted?

Self-hosted: the server runs locally on your machine via the install command above.

How do I install System Monitor Server in Claude Desktop, Claude Code or Cursor?

Open System Monitor Server on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.

Related MCPs

Compare System Monitor Server with

Not sure what to pick?

Find your stack in 60 seconds

Author?

Embed badge for your README

Browse similar

All ai MCPs