CMDOP Machine Care
cmdop-care
A small, read-only Model Context Protocol (MCP) stdio server exposing 4 read-only tools over an already-enrolled cmdop machine fleet: roster visibility, machine health, one bounded live diagnostic, and cmdop-owned storage usage.
Published: io.github.commandoperator/cmdop-care
· Current version: v0.1.2 · License: Apache-2.0
If you already use cmdop on a machine, this is the conservative MCP entry point: connect an MCP-aware assistant to read fleet health without exposing a shell, arbitrary file reads, or open-ended machine delegation. The host must already be enrolled; credentials stay in the host operating system keyring. For broader machine operations, use the main cmdop MCP server instead.
This is not the full cmdop MCP surface. It intentionally omits
ask_machine, run_command, read_file, and list_dir — every tool that
executes a command, reads an arbitrary file, or delegates an open-ended task
to another machine. If you need those, use the main cmdop CLI's own MCP
server (cmdop mcp stdio), which is a separate, broader, product-integration
surface with its own review requirements. cmdop-care exists specifically to
offer a narrower, safer, publishable subset for the official MCP Registry.
Requirement: an already-enrolled cmdop CLI on the host
cmdop-care requires the host machine to already be enrolled via the main
cmdop CLI. It does not implement enrollment itself, and it does not accept a
relay token via an environment variable or a mounted secret as a primary
credential path. On startup it reads:
the relay OAuth/enrollment Bearer token the
cmdopCLI already stored in the OS keyring (macOS Keychain / Linux Secret Service / Windows Credential Manager) when you rancmdop enroll <enrollment-password>;any per-machine connection PIN the
cmdopCLI has already cached in the same keyring (e.g. from a priorcmdop connect), forcare_diagnoseonly.
If no token is found, every tool responds with a clear "not enrolled" message instead of failing silently or hanging.
This "host-keyring passthrough" model was a deliberate design decision (see
security-architecture-2026-07-18.md in this artifact's source repository)
to avoid introducing a second, weaker credential-handling path for the
product — this binary is not a fully standalone identity; it rides the same
enrollment as the CLI already installed on the host.
The 4 tools
list_machines
Lists the machines in the enrolled fleet.
Input: none.
Output: an array of
{host, online, os}. No machine ID/UUID is ever returned — this is a deliberate redaction decision (the internal relay identifier is dropped before serialization, not merely omitted from rendering).
care_status
Reads the durable Machine Care projection (facts, findings, coverage, freshness) for one enrolled machine.
Input:
machine(string, required) — exact display name fromlist_machines.Output: aggregate facts/findings with closed-vocabulary codes, coverage flags, and reason codes. No raw paths, commands, environment variables, or machine identity.
Read-only; works even while the target machine is offline (it reads a relay-stored projection, not a live round-trip).
care_diagnose
Runs one bounded, typed process/startup diagnostic on a live enrolled machine — useful for "why is this machine slow?"
Input:
machine(string, required).Output: a bounded snapshot of process and startup-item facts.
Two disclosures, read before using this tool:
PIN forwarding. If the target machine requires a connection PIN, it is forwarded automatically from this host's local OS-keyring PIN cache. You cannot and do not need to pass a PIN as a tool argument. If the machine requires a PIN and none is cached on this host, the call fails closed with a permission error — it never proceeds without one.
Process data reaches your LLM provider. The response includes raw OS process IDs (PIDs) and process names from the target machine. That means whatever MCP client and LLM you are using — Claude Code, Codex, or any other MCP-speaking assistant — will see the names of processes running on that machine. This is a deliberate, reviewed part of the diagnostic contract (it is bounded: at most 20 process entries, no command lines, no arguments, no environment variables, no file paths), but you should know it before enabling this tool on a machine whose process list you don't want an external LLM provider to see.
It never executes a shell command, accepts no PID or command argument, and performs no mutation.
care_storage_inventory
Reads the latest validated cmdop-owned storage inventory for one enrolled machine.
Input:
machine(string, required).Output: aggregate byte totals per closed-vocabulary storage source (e.g.
cmdop_logs,devcache_go_build). Accepts no path argument and deletes nothing.
What every tool call does not do
No tool accepts a shell command, a file path, or a raw PID as an argument.
The only free-form input across all 4 tools is the
machinestring, used purely as an opaque lookup key resolved server-side against your own fleet — never interpolated into a path, command, or query.Every call is wrapped in a 15-second timeout independent of the relay's own transport defaults, and a small per-tool rate limit, so a stuck or abused backend cannot hang the process or become a high-volume exfiltration channel.
Build and run
go build -o cmdop-care .
./cmdop-careOr via Docker (after resolving and pinning the base image digest — see the
<PIN-BEFORE-BUILD> comment in Dockerfile):
docker build -t cmdop-care:0.1.2 .
docker run --rm -i cmdop-care:0.1.2The server speaks MCP over stdio only — there is no listening port. Point your MCP client (Claude Code, Codex, or any other MCP-speaking assistant) at the built binary or image the way you would any other stdio MCP server.
For AI-client setup notes, including a minimal MCP JSON configuration and first
prompt, see llms-install.md.
For marketplace submissions that require a square logo image, use the canonical
400×400 PNG in assets/cmdop-care-400.png.
Releasing a new version
Maintainers: see RELEASE.md — the short version is make publish, always run manually, never triggered by any CI or by cmdop_go's
own release.
Relay address
By default cmdop-care dials the local embedded cmdop relay on loopback
(127.0.0.1:63142). Set CMDOP_CARE_RELAY_ADDR to override the dial target
for advanced self-hosted setups. This is a transport address only — never a
credential.
Compatibility
| Compatible cmdop relay wire contract |
|
|
Contributing to this repository
This repository enables a tracked pre-commit hook that rejects staged environment files, private keys, and probable API tokens. After cloning, run:
git config core.hooksPath .githooksSecurity
This artifact went through an explicit threat-model and code-audit review
before implementation (see the Cmdop organization's internal
security-architecture-2026-07-18.md and code-audit-2026-07-18.md, referenced
from this repository's delivery track). Report a security issue to
security@cmdop.com (confirm this mailbox is live and monitored before
relying on it — this repository's maintainers must verify that before
publication).
License
Apache-2.0 — see LICENSE.
This server cannot be installed
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
- 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/commandoperator/cmdop-care-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server