Skip to main content
Glama

Execution Proofs

Execution Proofs is a local MCP server that verifies whether an AI agent's completion claim is source-bound to real output artifacts at runtime. It checks the existence of claimed files and, when requested, whether those files were modified within a freshness window.

The core verifier supports both ESM import and CommonJS require consumers.

Positioning: Execution Proofs is a lightweight physical telemetry gate — the first ultra-fast, low-cost filter before CI, tests, review, or LLM-as-judge workflows.

Tool / pattern

Primary layer

What it catches

Execution Proofs difference

Guardrails

Soft semantic filtering

Policy or format violations in model output

Runtime hard artifact verification: claimed files must exist and optionally be fresh.

DeepEval

Test-time evaluation

Quality regressions measured by evaluation cases

Runtime gate for completion claims, independent of offline eval suites.

soplint

Static behavior checks

Process or SOP drift before or around execution

Runtime proof that claimed output artifacts are physically present.

AgentLiar

Static diff analysis + optional LLM judge

Placeholders / weak tests / scope-narrowing inside a supplied git diff

We never judge diff quality — we extract artifact tokens from the completion claim itself and physically verify the files exist and are fresh, with zero LLM. AgentLiar requires an externally supplied diff and has no file-existence check.

MCP Usage

Build once:

npm install
npm run build

Add the server to an MCP client configuration:

{
  "mcpServers": {
    "execution-proofs": {
      "command": "node",
      "args": [
        "C:\\Users\\User\\Desktop\\AIWORK\\execution-proofs\\dist\\server.js"
      ]
    }
  }
}

The server exposes one tool:

{
  "name": "verify_claim",
  "arguments": {
    "claim_text": "Done: C:\\AIWFF\\outbox\\result.jsonl",
    "search_roots": ["C:\\AIWFF"],
    "since_minutes": 30,
    "task_started_at": "2026-06-12T08:40:00.000Z"
  }
}

Response shape:

{
  "verdict": "TRUE_DONE",
  "total": 1,
  "bound": 1,
  "relocated": 0,
  "unbound": 0,
  "stale": 0,
  "out_of_scope": 0,
  "items": []
}

Verdicts:

  • NO_CLAIM: no path-like output artifact token was found.

  • PSEUDO_DONE: at least one claimed artifact could not be source-bound, or an absolute path is outside search_roots.

  • STALE: all in-scope claimed artifacts exist, but at least one is older than since_minutes or predates task_started_at.

  • TRUE_DONE: all claimed artifacts exist and pass the optional freshness check.

Related MCP server: phionyx-pipeline-mcp

What It Checks

Token extraction follows the AIWFF source-binding gate semantics:

  • absolute Windows paths such as C:\AIWFF\outbox\result.jsonl

  • absolute POSIX paths such as /home/x/out.txt

  • backtick-wrapped filenames or relative paths that include a path separator or extension, such as result.jsonl or outbox/result.jsonl

Obvious non-path tokens such as version numbers (1.2.3), short labels (v0), and code symbols are ignored. Tokens in negative contexts such as "未修改 X", "did not touch X", or "no changes to X" are also ignored, because they are not completion claims.

For each token, Execution Proofs first checks the claimed path directly, but only inside search_roots. Absolute paths outside search_roots are marked out_of_scope and are not stat'ed. If an in-scope token does not exist directly, it searches by leaf filename under search_roots, excluding node_modules, .git, and _backup. A relocated match is still considered source-bound.

When since_minutes is greater than 0, a bound file must have an mtime within the last N minutes. Older files become stale.

When task_started_at is supplied as an ISO timestamp, a bound file must have an mtime at or after that baseline. Files older than the task baseline become stale, even if they are within the rolling since_minutes window.

Honest Boundary

Execution Proofs verifies whether claimed output artifact files really exist and whether they are fresh enough. It does not verify that file contents are correct, useful, safe, complete, or semantically aligned with the task. Content correctness still needs tests, review, semantic evaluation, or domain-specific validators.

It also proves existence at check time, not throughout. If an artifact was produced and then deleted, overwritten, or moved before the check, the gate sees only "not present now" and cannot distinguish that from "never produced". For workflows where that gap matters, stamp a receipt (path + content hash + timestamp) at production time and reconcile against it later — an opt-in mode, deliberately kept out of the zero-config core.

It can be deliberately bypassed. An agent can change its claim format, avoid mentioning paths, or otherwise omit artifact tokens so the gate has nothing concrete to verify.

Container, VM, and host filesystem isolation can produce false negatives. If the agent writes artifacts inside an isolated environment but Execution Proofs runs on the host, the host-side check may not see those files and may incorrectly mark the claim unbound.

Development

npm install
npm test

Part of a small set of tools for making AI agents finish work and stay disciplined — engine + guardrails:

  • aiwff-runtime — the local agent runtime (the engine that runs disciplined agents)

  • soplint — static SOP-compliance audit for AI work nodes

  • execution-proofs — MCP telemetry gateway: force agents to prove "done" with real files & timestamps (this repo)

引擎(跑得動的 agent)+護欄(審紀律、逼證明),同一套「讓 AI 守紀律」哲學的兩面。

Beyond the gate

This tool catches one shape of failure: a completion claim that isn't bound to a real file.

There are other shapes it cannot see, and they are quieter:

  • a health check whose predicate is structurally impossible to satisfy, so the ring stays yellow forever and everyone assumes the work just isn't done yet

  • a writer and a reader using different fields or different channels, so one column is silently null for weeks

  • an alert rule whose "false positive" branch requires a state the subject can never be in at first observation, so it fires every single time

  • a green dashboard where the checker itself returned null and null compared as pass

None of these surface as errors. They surface as nothing at all — which is why they survive for months.

We hit all four while building our own agent system, and we keep a catalogue of the shapes with the mechanical root cause for each. If your agents report success and your dashboards are green, but you cannot actually prove the work happened — open an issue and describe what you're seeing. A rough description is fine; these cases are hard to put into words, which is exactly why they survive.

Two other things you're welcome to open an issue for:

  • Drop a repo link and ask what it actually does, and whether it's worth adopting. We check whether it is alive — recent commits, whether issues get answered, whether anything actually depends on it — instead of just restating the README. If it looks abandoned, we'll say so.

  • Tell us about a silent failure shape we haven't catalogued. New shapes are genuinely useful to us, and we'll add them here with credit.

Reliability audits for production agent systems are available. The tools here stay MIT and free regardless — that part isn't going to change.

Available Tools

1 tool
verify_claimC

Verify whether claimed output artifacts exist and optionally whether they are fresh enough.

ParametersJSON Schema
NameRequiredDescriptionDefault
claim_textYesCompletion claim text that may contain artifact paths or backtick-wrapped filenames.
search_rootsNoRoots used to relocate missing claimed paths by leaf filename. Defaults to current working directory.
since_minutesNoFreshness window in minutes. 0 disables freshness checks.
task_started_atNoOptional ISO timestamp. Claimed artifacts older than this baseline are stale.

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description must disclose behavioral traits. It does not state whether the tool returns a boolean, throws errors, or what happens on missing artifacts. It also omits auth or permission needs, which is important for a verification tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, clear sentence that immediately conveys the core function. It is front-loaded and efficient, though could be improved with structured details.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With no output schema, the description should explain return behavior, but it does not. For a 4-parameter tool, the description lacks details on how verification results are presented (boolean, list, etc.) and other edge cases.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the baseline is 3. The description adds minimal context ('existence' and 'freshness') beyond the schema, but does not elaborate on parameter semantics or usage nuances.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool verifies existence and freshness of claimed output artifacts. It uses a specific verb-resource pair ('verify claimed output artifacts'), which is unambiguous. However, without sibling tools, differentiation is not tested.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No explicit guidance on when to use this tool versus alternatives, nor any prerequisites or when-not-to-use. The description only implies usage context ('to verify claims'), which is minimal guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

TDQS

B3/5.0
Disambiguation5/5

Only one tool exists, so there is no risk of ambiguity. The tool's purpose is clearly defined.

Naming Consistency5/5

The single tool uses a clear verb_noun pattern with snake_case, which is consistent with common conventions.

Tool Count2/5

Having only one tool for a server named 'execution-proofs' feels insufficient. Most servers in this domain would have multiple tools for different operations, making this count too low for the apparent scope.

Completeness1/5

The tool set is severely incomplete for execution proofs. It only verifies claims but lacks tools to submit proofs, create claims, list proofs, or manage any lifecycle, leading to dead ends for agents.

Maintenance

ActivityMaintained
ResponsivenessSyncing

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    A
    quality
    A
    maintenance
    Enables verification of AI coding agent self-reports against git diff truth and a deterministic gate, producing pass/regenerate/reject directives to ensure claimed work matches actual changes.
    6
    AGPL 3.0
  • A
    license
    A
    quality
    B
    maintenance
    Provides tools for tracking file reads and staleness, enabling LLM agents to detect when files have changed between turns for improved context awareness.
    4
    1
    MIT
  • A
    license
    C
    quality
    B
    maintenance
    A fail-closed preflight, approval, evidence, and verification runtime for agents, preventing unsupported output from being treated as verified completion.
    3
    MIT

Latest Blog Posts

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/zaxardery8011-design/execution-proofs'

If you have feedback or need assistance with the MCP directory API, please join our Discord server