Skip to main content

The CheckFox MCP server, which lets an AI agent read an audit, follow the official methodology, and record verdicts.

What the MCP server is

CheckFox hosts a Model Context Protocol (MCP) server, so an AI agent can work inside an audit directly. It is the read-and-write layer, not the auditor: the judgement stays with the agent and with you.

The public endpoint is https://api.checkfox.eu/mcp, and the guide to it lives at checkfox.eu/mcp.

What an agent can do with it

For each criterion, the agent reads the official tests and methodology, decides how to verify them (reading the page source, driving a real browser to exercise keyboard, focus and reflow, or running the CheckFox scanner for an extra signal), then records a status with its findings and a suggested fix.

Seven tools are exposed:

ToolPurposeScope
list_auditsThe audits the caller can accessread
get_auditOne audit, its samples and its progressread
list_criteriaA sample's criteria with their current statusread
get_next_criterionThe next untested criterion, with its methodologyread
get_criterion_methodologyAny criterion's methodology, by referential and numberread
run_scannerRun the automated scanner on a sampleread
update_criterionRecord a status, findings and a fixwrite

The referential itself is also exposed as browsable resources: an index of every criterion of a standard, and any single criterion's methodology on demand. Both are read-only and accept a language parameter.

Why it does not damage an audit

  • It never overwrites a person. A write only lands on a criterion still marked "Not tested". A human verdict is never touched, so an agent adds to manual work rather than replacing it.
  • Read and write are separate permissions. A key can be given mcp:read only.
  • Roles still apply. A key belonging to someone who can only view an audit can read that audit and never write to it.
  • Work can be claimed. get_next_criterion can atomically claim the criterion it returns, with a lifetime, so several agents can run in parallel without colliding. A claim can be released early.
  • Writes are marked as machine-written, with the model that produced them, exactly like an AI fix suggestion made in the app. See findings.
  • Traffic is rate limited per key.

What it doesn't do

  • It doesn't create the audit for you, you still need to go through the audit creation process and sampling. See procedures / create an audit.
  • It doesn't replace the auditor's judgement.

Plan availability

MCP access is included from the Pro plan and available as the MCP add-on on Free and Starter. It is checked per audit, against the plan of the workspace that audit belongs to, not against the person holding the key. See plans and roles.

Where it lives in the UI

  • User settings > API keys, to generate a key with the MCP scopes.
  • Workspace settings > Integrations shows whether the workspace has MCP access.

Last reviewed: 2026-09-03