Behavioral trust grades (A–F) for MCP servers. Use when an agent needs to check whether an MCP server is safe before using it, verify an onchain attestation before trusting or paying a server, look up a server's published grade, get a project graded, or understand why a server received a grade. Polygraph connects to an MCP server the way an agent would, fingerprints its exact tool surface, and runs behavioral probes — prompt-injection (C-01), permission/egress overreach (C-02), sensitive-data...
Scanned 9/5/2026
Install to Claude Code
npx -y skills add BankrBot/skills --skill polygraph --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Polygraph?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/bankrbot-polygraph)More formats (shields.io, HTML) on the badges page.
---
name: polygraph
description: Behavioral trust grades (A–F) for MCP servers. Use when an agent needs to check whether an MCP server is safe before using it, verify an onchain attestation before trusting or paying a server, look up a server's published grade, get a project graded, or understand why a server received a grade. Polygraph connects to an MCP server the way an agent would, fingerprints its exact tool surface, and runs behavioral probes — prompt-injection (C-01), permission/egress overreach (C-02), sensitive-data leak (C-03), and adversarial-input handling (C-04) — then publishes a reproducible grade as an onchain EAS attestation on Base. Triggers on mentions of MCP server safety, is this MCP server safe, tool poisoning, prompt injection, data leak, permission overreach, unexpected egress, trust grade, attestation, verify before paying, polygraph, litmus, grade my MCP server, adversarial input, robustness, crash, jailbreak, CI gate, fail the build, GitHub Action, gate my skill.
emoji: 🧪
tags: [security, mcp, trust, grade, attestation, base, prompt-injection, agent-safety]
visibility: public
---
# Polygraph: Behavioral Trust Grades for MCP Servers
Agents wire up third-party MCP servers and then trust whatever those servers' tools
return. Polygraph tests an MCP server's **behavior** before your agent does, and assigns a
letter grade **A–F** backed by reproducible evidence.
A passing grade is a **measurement, not a guarantee** — it says "this exact tool surface
did not misbehave under these probes," and because the harness is open and deterministic,
anyone can re-run it and disprove a bad grade. That falsifiability is the whole point.
- **Home / methodology:** [polygraph.so](https://polygraph.so)
- **Lookup CLI (npm):** `polygraphso`
- **Grading harness:** `@polygraphso/litmus` (open source)
---
## What a grade measures
Polygraph connects to a server the way an agent would — **stdio** for local packages,
**Streamable HTTP** for remote URLs — fingerprints its exact tool surface
(`tools/list` → canonical JSON → sha256 → `bytes32`), then runs four probe categories:
- **C-01 — Tool-output injection.** Does the server try to hijack the agent? Static scan of
tool names/descriptions/schemas for injection-shaped content (invisible unicode,
instruction mimicry, markdown tricks) **plus** dynamic bait calls that check whether tool
outputs smuggle in instructions.
- **C-02 — Permission / egress overreach.** Does the server do more than it claims? Flags
tools that declare `readOnlyHint: true` but carry destructive verbs, and runs the server in
a hardened **default-deny Docker sandbox** where any outbound network attempt is a finding.
- **C-03 — Sensitive-data handling.** Does the server leak secrets? Plants canary values in
the environment and working directory, exercises the tools, and scans both tool outputs and
egress for any canary that surfaces.
- **C-04 — Adversarial-input handling.** Does the server stay robust under hostile input? Runs
two probes on non-state-changing tools, with no Docker required: stress-tests each tool with
malformed and oversized inputs (fails if the server crashes, hangs, or leaks an uncaught
stack trace — a clean validation error or benign result passes); and feeds jailbreak-pattern
strings and scans the server's **outputs** with the C-01 injection scanners, failing only if
the server emits injection-shaped content it did not merely reflect from the input (a verbatim
echo is excluded). A C-04 failure caps the overall grade at D.
### Grade scale
| Grade | Meaning |
|-------|---------|
| **A** | Passed all four categories. No injection, no unexpected egress, no data leak, no adversarial-input failure. |
| **B** | Injection and data-leak checks passed; **egress was not verified.** The ceiling for any run without a local Docker sandbox — including every remote (HTTP) server, which can't be sandboxed. |
| **D** | Unexpected egress / permission overreach (C-02) **or** an adversarial-input robustness failure (C-04: crash, internals-leak, or amplification). No injection or leak → capped at D. |
| **F** | Disqualifying: active tool-output injection (C-01) or a sensitive-data leak (C-03) — a server that would harm an agent that trusts it. |
**Reading a B.** Under the current methodology, egress can only be observed by running the
server in a local default-deny sandbox — so a **remote MCP server caps at B** no matter how
clean it is. A remote B is a limit of the *measurement*, not a mark against the server; don't
read it as "worse than" a local A, because the two aren't directly comparable. (Grades **C**
and **E** are not assigned today; **C** is reserved.)
Every grade ships with a plain-English **rationale** — never a bare letter. See
[`references/methodology.md`](references/methodology.md) for the full decision logic and each
probe in depth.
---
## Check a grade
A sub-second lookup against published grades. This runs the `polygraphso` **lookup** CLI: it
reads a published grade and does **not** install or execute the target server. `npx` does fetch
and run our CLI, though — so it's a lookup, not a "no-install" check; pin the version in any
automated or trust context (e.g. before Bankr installs a server):
```bash
$ npx polygraphso@<version> check npm/@modelcontextprotocol/server-filesystem
→ polygraph: A · litmus-v10 · 2026-06-26
→ details → polygraph.so/#checks
```
Grades are **live** and span the full range. Browse the current graded set with
`polygraphso list`, or at [polygraph.so](https://polygraph.so). A grade is **point-in-time
evidence** — treat your own run, or the live attestation, as the source of truth rather than
any letter copied into a doc.
Refs are **registry-prefixed** — the prefix disambiguates (`redis` exists on npm, PyPI, and
GitHub with different content): `npm/…`, `pypi/…`, `github/…`. A tracked-but-ungraded server
reports `not available yet` with a notify link. Full CLI reference:
[`references/cli.md`](references/cli.md).
---
## Verify before you trust (Bankr integration)
The highest-value use at runtime: **gate an MCP server through its grade before your agent
uses it, pays it, or routes a transaction through it.** Polygraph is the *verify* step; Bankr
is the *execute* step. Two checks, both required:
1. **Grade meets your bar.** Default (`DEFAULT_PASSING`): accept A/B, refuse D/F. **For a signed
action or a payment, raise the bar to a local A** (`PAYMENT_PASSING`, or `gateDecision(…, {
requireEgressVerified: true })`): a remote server caps at B because its egress was never
observed — so a B is exactly the case where network exfiltration wasn't tested. Don't auto-route
a Bankr transaction through a remote B; require a local A or a manual review.
2. **Fingerprint still matches.** An attestation is only valid for the exact tool surface it
graded. Recompute the server's **live** tool-surface fingerprint and require it to equal the
attested one before acting — a built-in rug-pull check against a graded-then-swapped server.
3. **Attestation is trustworthy enough for the action.** `readAttestation` binds to our EAS schema
(fail-closed) and a fixed Base RPC, and `gateDecision` checks revocation, expiry, and the
server-ref binding. A self-minted grade is still **forgeable**, so before Bankr routes value also
require an **attester allowlist** (`gateDecision(…, { allowedAttesters })`) and an accepted
**methodology version** — or, strongest, **re-run the open harness** (`run_litmus`) and compare.
Reproducibility, not the signature, is what makes a grade trustworthy.
Drop the `verify_attestation` MCP tool in front of execution, or use the `gateDecision` helper.
> **Carry this into the decision:** a grade is a *measurement, not a guarantee.* A server that
> detects the test context could behave during grading and misbehave in production — **evasion**
> is the disclosed residual limit. Keep Bankr's own transaction-verification guards on, even
> for an A.
Full patterns, the MCP server config, and a worked "verify-then-execute" example:
[`references/bankr-integration.md`](references/bankr-integration.md).
---
## ★ Get your project graded
**Run the open harness on your own MCP server, get an A–F grade plus a reproducible evidence
bundle, and publish it onchain so agents can verify it:**
```bash
# Grade your server end-to-end (npm ref, https URL, or local path)
npx -y -p @polygraphso/litmus polygraphso-litmus litmus npm/@your-scope/your-mcp-server
```
You get the grade, the per-category verdicts, your tool-surface fingerprint, and a
content-addressed evidence bundle. Publishing that grade as an **onchain EAS attestation on
Base** (so other agents can look it up and verify it) is a one-step hand-off — see
[`references/methodology.md`](references/methodology.md#publishing-a-grade).
Prefer not to run it yourself? Request a grade or get notified when yours publishes at
**[polygraph.so](https://polygraph.so)**.
> **One line for builders:** check any MCP server before your agent uses it with
> `npx polygraphso check <server>`, and get your own server graded at
> [polygraph.so](https://polygraph.so).
---
## Run the harness locally
The harness is the same open, deterministic engine that produces published grades:
```bash
npm i -g @polygraphso/litmus # or use npx, above
polygraphso-litmus litmus npm/@modelcontextprotocol/server-filesystem
polygraphso-litmus litmus https://example.com/mcp --bearer "$TOKEN"
polygraphso-litmus litmus ./path/to/local-mcp-server --json
```
- **Node ≥ 18.** **Docker is optional** but recommended — without it the egress probe (C-02)
is skipped and the grade is **capped at B** (as is any remote/HTTP target, which can't be
sandboxed).
- **`--bearer` is sent as an `Authorization` header to the target.** Pass it only to a remote you
explicitly trust and have pinned; use a scoped, short-lived token — never on an auto-discovered
or untrusted target.
- **Exit codes are CI-friendly:** non-zero on a failing grade (D/F), zero on A/B — drop it into
a pipeline to gate dependencies.
Flags, env vars, `--json` output, and the `check` / `list` subcommands are all in
[`references/cli.md`](references/cli.md).
---
## Gate your CI on grades
Turn the grade into a build check: the **polygraph CI gate** fails a build when an MCP server or an
Agent Skill grades D/F. Add the GitHub Action to a repo — pin it to a commit SHA (not the mutable
`@v1` tag) and trigger on `pull_request`, never `pull_request_target`:
```yaml
on: [pull_request] # not pull_request_target
# …
- uses: polygraphso/litmus@<commit-sha> # pin a SHA for a security gate
with:
servers: | # name targets explicitly (recommended)
npm/@modelcontextprotocol/server-filesystem
skills: |
./my-skill
```
— or run it anywhere with `npx @polygraphso/litmus@<version> ci` (pin the version). **Grading a
server runs its code** (egress is Docker-sandboxed, but it still executes), so on a public repo
keep auto-discovery **off** (the default) and name targets explicitly rather than grading
PR-controlled `.mcp.json` / `.vscode` / `.cursor` config. Un-gradeable targets warn unless `strict`.
A **skill** grade is a **static** scan, not behavioral proof — treat a skill that runs install-time
code or carries transaction instructions as needing manual review regardless of its letter. Full
setup, inputs, and the security notes: [`references/ci-gate.md`](references/ci-gate.md).
---
## Why a server got grade X
Every run prints the methodology, the per-category verdict, the tool-surface fingerprint, and
the grade with a one-paragraph rationale:
```
→ litmus · npm/@modelcontextprotocol/server-filesystem
→ version 0.1.0
→ C-01 pass · C-02 pass · C-03 pass · C-04 pass
→ fingerprint 0x1a2b3c4d…5e6f7890
→ grade: A
All four categories passed. No injection, no unexpected egress, no data leak.
```
On a failure the report surfaces the top HIGH-severity findings (tool name, finding kind, the
offending snippet). [`references/methodology.md`](references/methodology.md) maps every grade
and finding kind to its cause.
---
## How much to trust the grade (honest limits)
- **Reproducibility is the trust anchor.** The harness is open source and deterministic, so a
false grade is falsifiable — anyone can re-run it against the same server and the result
must match.
- **A self-published grade is forgeable** by whoever signs it; that's why reproducibility (not
the signature) is what makes a grade trustworthy, and why the fingerprint recheck guards
against a graded-then-swapped server.
- **Evasion is the residual limit:** a server that detects the test context could behave during
grading and misbehave in production. This is disclosed, not hidden.
- Stronger, independent guarantees (staked bonds, TEE-backed runs, independent re-grading) are
on the roadmap, not claimed today.
---
## Resources
- **Home + methodology:** https://polygraph.so
- **Lookup CLI:** `npx polygraphso check <registry>/<owner>/<name>` · https://www.npmjs.com/package/polygraphso
- **Grading harness:** `@polygraphso/litmus` (open source — see polygraph.so for the repo)
- **Onchain proof:** EAS attestations on Base
- **References:** [`methodology.md`](references/methodology.md) · [`cli.md`](references/cli.md) · [`bankr-integration.md`](references/bankr-integration.md) · [`ci-gate.md`](references/ci-gate.md)
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!