Evaluates whether an AI agent is safe to operate internal web apps via an MCP run_suite tool.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
Certify whether an AI agent is safe to operate your internal web app before you give it production access.

or
Both packages install a deskcert binary with the same init/run/ci/mcp surface,
scored by the same rules (see Scoring model). The Python package adds one
convenience-only command, deskcert serve-fixture, so you can run the bundled fixture app
without Node installed; the npm package's equivalent is running its bundled
fixture-app/server.mjs directly with node, as shown below.
deskcert init writes a runnable example: two tasks, a tiny local admin panel to run them
against, and the JSON Schema DeskCert validates every suite with. Point --suite at a copy
of that directory with your own target_url, tasks, and forbidden actions once you're ready
to test a real application and a real agent.
target_url in a task definition points at whatever you're
testing: staging, a local fixture, an internal environment behind your VPN. DeskCert never
ships a fixed task set to run against public software.forbidden_actions by name. If the
agent attempts one, DeskCert intercepts it before it reaches the page, records the
violation with the exact action and step number, and fails the suite gate unconditionally.
A violation is never averaged away by an otherwise-good score.deskcert ci exits 0 on a pass, 1 when the score is below
threshold, 2 when any forbidden-action violation occurred, so a pipeline can distinguish
"not good enough yet" from "this agent tried something dangerous."AgentAdapter is a two-method interface: given a screenshot
and an accessibility-tree text dump, return the next action. Wire up Claude computer-use,
LangGraph, CrewAI, or an in-house loop in a few lines; the bundled scripted adapter needs
no agent or API key at all, for a first run or for CI self-tests. See
docs/agent-adapter.md for the full interface and a worked example.python/tests/test_parity.py checks it directly against a built
dist/cli.js.deskcert mcp exposes a run_suite tool over
stdio, so a deployment pipeline or an orchestrating agent can call DeskCert as a tool
instead of shelling out to a CLI.target_url is restricted to http(s)://. The task-suite schema rejects file:// and
javascript: URLs outright, so a malicious or careless task definition can't be used to read
local files or execute an inline script through the runner. See
schema/task-suite.schema.json.| DeskCert | OSWorld | WindowsAgentArena | TheAgentCompany | OpenAgentSafety | |
|---|---|---|---|---|---|
| Target application | Your own web app | Fixed public software (LibreOffice, GIMP, Chrome, VS Code) | Fixed public Windows software | A simulated company environment | A fixed simulated environment |
| Task suite | You author it, in YAML | Fixed benchmark tasks | Fixed benchmark tasks | Fixed benchmark tasks | Fixed adversarial-instruction tasks |
| Explicit forbidden-action gate | Yes, weighted heavily, unconditional gate fail | No | No | No | Adversarial-instruction focus, not a per-task allow/forbid gate |
| CI-runnable exit code | Yes (0/1/2) | Not designed for CI gating | Not designed for CI gating | Not designed for CI gating | Not designed for CI gating |
| Environment | Browser (Playwright) | Full OS via VM snapshot | Full Windows OS via VM | Containerized simulated company | Simulated environment |
| GitHub stars (2026-08-03) | new | 3,061 | 885 | 755 | 32 |
| Last commit (2026-08-03) | today | 2026-07-28 | 2026-04-13 | 2025-11-17 | 2026-07-06 |
OSWorld, WindowsAgentArena, and TheAgentCompany are capability benchmarks: they answer "how good is this agent at generic tasks." None of the four let you plug in your own application and your own task suite, and none treat a specific forbidden action as an unconditional gate failure the way DeskCert does. If your question is "how capable is this agent in general," those four are the right tools. If your question is "can I trust this agent near our production admin panel," that's the gap DeskCert fills.
Every existing computer-use benchmark (OSWorld, WindowsAgentArena, WebArena, TheAgentCompany) scores an agent against fixed public software: LibreOffice, GIMP, a stock OS image, a public website. That tells you how capable an agent is in general. It does not tell you whether the same agent is safe to point at your admin panel, your internal dashboard, or your CRUD tool, doing the specific high-risk actions your business actually cares about.
DeskCert answers that second question. You write a task suite in YAML against your own application: what the agent should be able to do, what it must never do, and how to tell whether it succeeded. DeskCert runs the suite with Playwright, scores the result, and gates your CI/CD pipeline on it the same way you'd gate on a failing test suite.
That output is real, produced by the fixture suite bundled in this repo
(examples/example-suite): a two-task suite run against a small local admin panel with a
"Delete All Records" button. The scripted reference agent attempts the delete, and DeskCert
blocks it before it reaches the page, records it as a forbidden-action violation, and fails
the gate even though the task's own success check still passed. A single guardrail violation
tanks the score instead of averaging out across a large suite.
DeskCert currently certifies agents against web applications, driven through the browser with Playwright. There is no native desktop or OS-level GUI control: no VM snapshots, no Windows/macOS window automation. Full desktop-environment orchestration is the approach OSWorld and WindowsAgentArena take, and it is heavy infrastructure a browser-first tool does not need to promise. Most internal enterprise tools (admin panels, CRUD dashboards, internal consoles) are web apps today, which is what DeskCert is scoped to test well.
Scaffold an example task suite and fixture app into --dir (default ./deskcert-suite).
Run a suite once and print a Capability & Safety Score. --agent scripted uses the bundled
reference adapter; any other name requires --adapter-module <path> pointing at a module that
exports an AgentAdapter implementation. --json prints the full structured report instead
of the human-readable summary.

Same run, packaged for a pipeline: always headless, exits 0/1/2 per the contract above.
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/deskcert)<a href="https://allmcps.com/mcp/deskcert"><img src="https://allmcps.com/api/badge/deskcert?style=directory" alt="Deskcert on AllMCPs" /></a>