SENTINEL SIGNALVERIFY
DOCUMENTATION

Agent Reliability documentation

How Agent Reliability catches breaking and dangerous MCP changes before they ship: baselines, semantic diffs, policy, GitHub Checks, scheduled monitoring, and evidence.

Overview

Agent Reliability remembers the MCP tool contract your team approved and compares every future change against it. Install the GitHub App, register a target, and every push or pull request gets a GitHub Check that explains what changed, why it matters, and whether your deployment policy allows it.

Quickstart

Install the GitHub App from the Agent Reliability overview page and grant it access to the repositories you want covered. The first scan for a repository establishes its baseline; every scan after that is compared against it.

Repository setup

Install the GitHub App and grant it access to the repositories you want covered. Each installed repository becomes available to register targets against.

Targets

A target is the MCP endpoint Agent Reliability scans on your behalf. Targets are public HTTPS MCP endpoints today; each repository can register multiple targets (for example, staging and production). Each target can optionally be put on a scheduled-scan interval independent of repository activity.

Baselines

Agent Reliability remembers the tool contract your team approved. Every future scan is compared against that accepted state, not against whatever the server happens to look like today. A completed, non-superseded, non-pull-request scan against your default branch that passes policy automatically promotes its snapshot as the new baseline -- pull-request scans never do, so a change under review can't silently redefine what "approved" means before it's merged. Any completed, non-superseded run that isn't blocked can also be promoted manually, except a pull-request run -- promoting a baseline from an unmerged PR would have the same silent-redefinition problem the automatic case exists to prevent. A pull-request run that lands on approval_required therefore cannot be resolved by promoting a baseline at all: approve is the separate action for that, a recorded human sign-off that flips the run's GitHub Check Run to a passing conclusion without changing any target's baseline.

Semantic diff

Every scan produces a semantic contract comparison, not a raw JSON diff. Changes are classified two ways: how severe (info/low/medium/high/critical) and whether they're breaking for existing callers -- these are independent, because a low-severity change can still break callers and a high-severity one can be fully backward compatible.

Policies

You define what an unacceptable change looks like in a repository deployment policy. Each scan evaluates to one decision: pass, warn, approval_required, or block.

GitHub Checks

The Check is where you see the result. It reports a title summarizing the decision and change count, a one-line summary of the most important finding, and a full Markdown body organized by severity (Critical/High/Medium/Low/Info) naming exactly which policy rule fired and what to do next.

Scheduled monitoring

Your code does not have to change for your agent dependencies to change. Once a target is registered, you can enable scheduled scans that recheck it on an interval, independent of repository activity, and alert when an upstream MCP server introduces contract, permission, authentication, or trust changes outside your repository.

Evidence

Every run produces a structured evidence artifact (JSON and Markdown) recording the diff, the policy evaluation, and both the baseline and candidate snapshot fingerprints. Evidence is hash-chain protected today. Evidence artifacts can be cryptographically signed for independent verification on supported deployments.

Security & privacy

The GitHub App requests the minimum permissions needed to do its job -- nothing more:

Deletion

You can permanently delete your Agent Reliability workspace data yourself, at any time, from your workspace dashboard -- no need to contact support. This is separate from uninstalling the GitHub App: uninstalling stops future scans, deletion removes stored data. Deletion is irreversible and does not affect your Team or any other Verify data. See the privacy policy for the full list of what's deleted.

Quotas

Free Beta and Team are the two available plans today.

Troubleshooting

A scan result is always one of three different kinds of outcome, and they are never confused with each other: a policy decision (pass/warn/approval_required/block) is a finding about your MCP server's contract; a configuration error means the scan couldn't run because of how it's set up (for example, an invalid policy file); an infrastructure error means the scan itself failed to complete. A broken scan or an infrastructure problem is reported as needing attention -- it is never presented as a policy block, so it never reads as "your MCP server is unsafe" when the real problem was on the scanning side.

CLI / operator workflow

The verify-agent CLI (pip install sentinel-verify-agent) can drive the full operator lifecycle against the hosted API below, not just local scan/diff. A typical sequence:

verify-agent policy validate .verify-agent.yml
verify-agent monitor run --repository <repo-id> --target <target-id> --wait
verify-agent monitor status --run <run-id>
verify-agent approve <run-id> --reason "reviewed and safe to merge"   # only if the run landed on approval_required
verify-agent baseline promote --run <run-id> --reason "manual review passed"
verify-agent baseline rollback --repository <repo-id> --target <target-id> --baseline <baseline-id> --reason "bad deploy"

approve is the operation that closes a real gap: a pull-request-triggered run stuck at approval_required cannot be resolved by promoting a baseline (see "Baselines" above) -- approve is the separate, correct action, a recorded human sign-off that flips the run's GitHub Check without touching any baseline. See verify-agent --help for the full command reference, or sentinel-verify-agent on PyPI to install it.

API

Supported external routes. All require authentication except the public overview and install pages.

Get started

Install the GitHub App from the Agent Reliability overview.