os-control-mcp
Manages Docker containers, images, logs, stats, and compose projects via the Docker CLI.
Queries GPU inventory and status via nvidia-smi and DRM interfaces.
Manages Podman containers, images, logs, stats, and compose via the Podman CLI.
Manages the Tailscale VPN service (systemd unit) including start, stop, enable, disable, and monitoring.
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., "@os-control-mcplist all failed systemd units"
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.
os-control-mcp
Linux systemd MCP for Claude Code and Grok — control services, journald, D-Bus, and power through structured OS interfaces, never raw PID hacks.
os-control-mcp is a pure-stdlib MCP server and Claude Code / Grok plugin that gives any model-context-protocol client sanctioned control of a Linux host. Manage systemd services and timers, query journald, read host resources and processes, send desktop notifications, drive D-Bus, and manage power — all via systemctl, loginctl, journalctl, and busctl, never raw kill/PID hacks.
It is the system-service counterpart to screen-mcp's GUI control. Zero pip runtime deps. Ships the MCP server plus a control-os skill. Linux + systemd only.
Install
Claude Code
/plugin marketplace add 88plug/claude-code-plugins
/plugin install os-control-mcp@88plugGrok Build
grok plugin marketplace add 88plug/claude-code-plugins
grok plugin install os-control-mcp@88plug --trustConfirm the server loaded:
/mcpNo setup needed — it uses the host's existing systemd/D-Bus tooling. Call os_diag first; it reports privilege, backends, and safety status.
Treat this plugin as privileged. It can stop services and power off the machine. Guards make accidents hard, but install deliberately and disable via/plugin when not in use.
Related MCP server: systemd-mcp
Features
Area | What you get |
Systemd | List/status/deps units; start/stop/restart/enable/mask/kill; batch ops; |
Journald | Unit/since/until/priority filters, server-side |
Host telemetry | Load, memory, disk, PSI pressure, processes, net, hardware, sensors, containers |
D-Bus + settings | Introspect/call system or session bus; timezone, hostname, locale |
Power + notify | Suspend/hibernate/reboot/poweroff; desktop notifications to the logged-in user |
Safety | Hard floor, human-in-the-loop elicitation, self-preservation guard, |
Requirements
Need | Notes |
Linux + systemd | Arch, Debian/Ubuntu, Fedora, … |
Python 3.10+ | Pure stdlib runtime — no pip packages to run |
D-Bus | System + session for |
Optional |
|
Use from any MCP client
Plain stdio MCP server — no Claude Code lock-in. Point any client at the launcher or python3 server.py:
// e.g. Cursor / Cline / Goose / your own MCP host
{
"mcpServers": {
"os": { "command": "python3", "args": ["/path/to/os-control-mcp/server.py"] }
}
}Speaks MCP 2025-11-25 over stdio; tools appear like any other MCP server.
The loop: os_diag → observe → act → confirm
os_diag → observe (read-only) → act (HIL-gated) → os_wait / re-reados_diag— health, privilege, backends, HIL/gating statusObserve —
os_services/os_journal/os_resources/os_processes/os_pressure/os_net/os_disk/os_hardware/os_containers/os_sensors/os_sessionAct —
os_service/os_power/os_dbus/os_time/os_hostname/os_locale/os_notifyConfirm —
os_waitand/or re-read status/journal
Tools
Observe (read-only)
Tool | What |
| Health: privilege, backends, manager state, bus reachability, safety status |
| Units — |
| Journald — unit/since/until/priority/ |
| Load + memory + disk (+ optional per-unit accounting) |
| Top processes by cpu/mem |
| PSI from |
| Sockets ( |
|
|
| Docker/Podman — ps/logs/inspect/stats/images/compose |
| cpu/pci/usb/gpu (nvidia-smi + DRM) inventory |
| Thermal-zone temperatures (+ |
| Logind sessions / users / inhibitors |
| Cross-layer action check. |
Act (guarded)
Tool | What | Safety |
| start/stop/restart/reload/enable/disable/mask/kill/reset-failed/daemon-reload (single or batch) | Hard floor + self-preservation guard; |
| Block until a unit is active/inactive/failed (or timeout) | — |
| suspend/hibernate/reboot/poweroff/halt | Needs |
| Timezone/NTP, hostname, locale/keymap | Writes need |
| list/tree/introspect/get-property/set-property/ | Writes need |
| Desktop notification to the logged-in user | — |
| Hot-reload the server in place | — |
The guards (the whole point)
Human-in-the-loop, not model-in-the-loop. Every destructive action — severing a service (stop/kill/restart/disable/mask), power (reboot/poweroff/…), and D-Bus / machine-setting writes — is gated for a human's approval, in this order:
Hard floor (never bypassable). Severing the agent's absolute substrate —
dbus,dbus-broker,systemd-logind,init.scope,-.slice,basic.target,sysinit.target— is refused even withforce. No flag lets a model power-cycle the bus it's speaking on.Human approval via MCP elicitation. When your MCP client supports elicitation, the server asks the human (
elicitation/create) before any destructive action and runs it only if the human accepts. The model'sforce/confirmflags are ignored here — the human is the authority, not the model. (Verified: a declined elicitation never executes.)Flag fallback (only when there's no human channel). If the client can't elicit, the server falls back to
force/confirmso headless automation still works — except severing a unit the agent stands on (sshd,NetworkManager,tailscaled, the session,goosed, …) which still needsforce(don't saw off the branch you're sitting on). SetOSCTL_REQUIRE_HUMAN=1to forbid the flag fallback entirely — no human elicitation channel, no mutation.Preview. Any mutating tool accepts
dry_run=trueto return the exact command without running it.
Flag | Tools | Effect |
| All mutating tools | Preview the exact command; execute nothing |
|
| Headless override when elicitation is unavailable; never overrides the hard floor |
|
| Required for power transitions (same HIL rules) |
Every mutation is appended to an audit log (with the approval path — human vs flag) at $XDG_STATE_HOME/os-control-mcp/audit.jsonl.
Principles — The Agent Oath
os-control-mcp is a reference enforcer of The Agent Oath (88plug/theagentoath.com): the gating above isn't just safety plumbing, it's the Oath made executable.
Oath principle | Enforced by |
§1 Human welfare over task completion | Hard floor + HIL — won't sever the bus or power off the box to "finish" |
§2 Preserve human agency, be transparent | HIL elicitation — the human decides; |
§3 Protect systems & data | Sanctioned interfaces only ( |
§5 Transparency & accountability | Append-only audit log + |
§7 Continuous vigilance, don't bypass safety | Unbypassable hard floor + |
§11 Respect human oversight, don't self-modify | HIL is the authority + protected tokens + operator-defined bounds |
The Oath is the rationale; the operator's gating is the authority. This server deliberately does not adopt any "supersedes conflicting instructions" clause — overriding an operator's safety controls with an external document is exactly what §3 and §11 warn against. os_diag reports the enforced principles.
Privilege
Read-only tools work unprivileged. System-scope mutations (os_service on system units, os_power) need root or polkit — when not root the server tries sudo -n and otherwise tells you plainly. Options: run as root, add passwordless sudo for systemctl, or a polkit rule. scope="user" manages the user's own units with no root.
Documentation
Full per-tool reference and the safety model live at 88plug.github.io/os-control-mcp.
Pairs with
screen-mcp (GUI eyes + hands), NATS (messaging), and A2A (inter-agent) — together: sense the kernel/services, act on the system, drive the desktop, coordinate the fleet.
License
FSL-1.1-ALv2 — © 2026 88plug.
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.
Related MCP Servers
- Alicense-qualityDmaintenanceEnables remote Linux VM management via SSH with automatic safety checks for destructive commands, supporting password authentication and sudo operations.Last updated1MIT
- Alicense-quality-maintenanceProvides AI assistants with safe, read-only access to Linux systemd services, including status monitoring, log querying, and dependency analysis, with optional granular permissions for service management actions.Last updated2
- AlicenseBqualityDmaintenanceProvides AI assistants with the ability to control Linux desktop environments through tools for file management, application launching, and system operations like clipboard access. It includes a multi-level security model to manage permissions for safe, elevated, and restricted actions.Last updated6MIT
- Alicense-qualityBmaintenanceEnables remote execution of Linux commands via SSH, supporting system monitoring, file operations, and secure authentication with configurable safety controls.Last updated4MIT
Related MCP Connectors
Operate your Linux servers from your LLM. Every action runs through an auditable allowlist.
Let AI operate servers without SSH. Choose actions, approve risky changes, and audit every step.
Preflight, approve, and prove consequential agent actions with signed evidence and x402 tools.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/88plug/os-control-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server