Computer Agent Mcp — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Computer Agent Mcp (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
A black-box desktop automation MCP server — give it a task, it handles the screenshots, coordinates, and clicks internally, and returns the result.
<p align="center"> <video src="https://github.com/user-attachments/assets/1f61fa7e-2166-49ba-94fa-97913fad5bb2" width="720" controls></video> </p>
Unlike typical computer-use tools that expose raw screenshots to the host agent, computer-agent-mcp runs the entire vision loop server-side:
The host agent never sees a screenshot. It just sends a task and gets back a result.
The quickest way to start:
uvx computer-agent-mcp \
--api-key sk-... \
--base-url https://api.openai.com/v1 \
--model gpt-5.4Or install via pip:
pip install computer-agent-mcp
computer-agent-mcp \
--api-key sk-... \
--base-url https://api.openai.com/v1 \
--model gpt-5.4Add to your MCP client config (e.g. Claude Desktop, Cursor, etc.):
{
"mcpServers": {
"computer-agent": {
"command": "uvx",
"args": [
"computer-agent-mcp",
"--base-url",
"https://api.openai.com/v1",
"--model",
"gpt-5.4"
],
"env": {
"COMPUTER_AGENT_OPENAI_API_KEY": "sk-..."
}
}
}
}computer_use_taskRun a stateless black-box desktop task.
| Parameter | Default | Description |
|---|---|---|
task | (required) | Natural language description of what to do |
display_id | "primary" | Target display |
max_steps | 30 | Maximum vision-action loop iterations |
Returns structured result with status (completed / blocked / failed), summary, result, memory, and trace.
computer_list_displaysList available displays. Useful for multi-monitor setups.
All CLI parameters can also be set via environment variables:
| CLI Flag | Env Variable | Default | Description |
|---|---|---|---|
--api-key | COMPUTER_AGENT_OPENAI_API_KEY | — | API key (also reads OPENAI_API_KEY) |
--base-url | COMPUTER_AGENT_OPENAI_BASE_URL | https://api.openai.com/v1 | API base URL |
--model | COMPUTER_AGENT_OPENAI_MODEL | gpt-5.4 | Vision model to use |
--max-steps-default | COMPUTER_AGENT_MAX_STEPS_DEFAULT | 30 | Default max steps per task |
--max-duration-s-default | COMPUTER_AGENT_MAX_DURATION_S_DEFAULT | 120 | Default max duration (seconds) |
--debug-dir | COMPUTER_AGENT_DEBUG_DIR | .computer_agent_mcp_debug/ | Debug output directory |
--log-level | COMPUTER_AGENT_LOG_LEVEL | INFO | Log level |
Enable debug recording with COMPUTER_AGENT_DEBUG=1. See REFERENCE.md for the full configuration reference and detailed runtime semantics.
pip install -e .[dev]
pytestCurrently Windows only. The server will start on other platforms but desktop tool calls will fail.
Contributions are welcome! Please open an issue first to discuss what you'd like to change.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.