Verity MCP
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| VERITY_SUITE_URL | No | URL of Verity Suite server | https://verity-suite.onrender.com |
| VERITY_ENGINE_URL | No | URL of Verity Engine server | https://verity-bzw7.onrender.com |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| quick_verifyA | Cheap, fast reality-check on a CLAIM — the loopable default. PRICE: ~$0.02 per call (x402, USDC on Base mainnet). Ungrounded (no web search): a single calibrated Haiku judge over the claim's own plausibility/consistency — use it everywhere as the inexpensive first pass, then escalate the load-bearing ones to grounded_verify. |
| grounded_verifyA | Web-GROUNDED reality-check on a CLAIM — the default product. PRICE: ~$0.25 per call (x402, USDC on Base mainnet). Runs a live, capped web search and a calibrated Sonnet synthesis — use it right before an agent acts on, repeats, or surfaces a fact that matters (a fabricated citation, an invented policy, a wrong number). Escalate to pro_verify for the deepest synthesis. |
| pro_verifyA | Premium, web-GROUNDED reality-check on a CLAIM — the deepest tier. PRICE: ~$0.35 per call (x402, USDC on Base mainnet). Runs a live web search and a calibrated Opus synthesis — reach for it when a claim is high-stakes and the grounded tier's answer isn't confident enough to act on. |
| verify_receiptA | FREE. Statelessly verify a signed verdict RECEIPT — your audit trail / second opinion. PRICE: $0.00 (no x402 payment; this is a free discovery route). Pass the receipt object returned by any paid verify tool; Verity checks its Ed25519 signature against the server's public key and confirms Verity really issued exactly that verdict for exactly that claim. Use it to prove a result held, catch tampering, or attach cryptographic proof before you act. |
| detect_injectionA | Screen untrusted text or tool output for PROMPT-INJECTION / manipulation. PRICE: ~$0.02 per call (x402, USDC on Base mainnet). Use on anything an agent ingests from an outside source (web page, email, doc, tool result) BEFORE acting on it. Catches instruction-override, task/persona switching, grounding-override, jailbreaks, and multilingual attacks. |
| moderate_contentA | Decide whether CONTENT is safe to publish, post, or surface. PRICE: ~$0.02 per call (x402,
USDC on Base mainnet). Use before an agent sends or publishes generated content. Optional
|
| redact_piiA | Detect personal data and secrets in a PAYLOAD before it is sent, stored, or logged. PRICE: ~$0.02 per call (x402, USDC on Base mainnet). Use before an agent transmits text outside a trust boundary. Flags PII (names, emails, IDs, financial, device/IP) and secrets (API keys, passwords, tokens). |
| guard_actionA | THE MONEY-LINE GATE. Decide whether a proposed agent ACTION should proceed — use this right before the agent SPENDS, SENDS, or commits something irreversible (a payment, an outbound message, a destructive command, a data share). PRICE: ~$0.02 per call (x402, USDC on Base mainnet); allow/review/block are priced identically — no block-to-bill rent-seeking. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 8 tools
The three verify tools (quick_verify, grounded_verify, pro_verify) are intentionally similar but clearly differentiated by pricing, grounding, and model tier, so an agent can choose based on stakes. verify_receipt, detect_injection, moderate_content, redact_pii, and guard_action each target distinct safety concerns with little overlap.
Most tools follow a verb_noun pattern (verify_receipt, detect_injection, moderate_content, redact_pii, guard_action). The verify tier breaks the pattern by putting the adjective before the verb (quick_verify, grounded_verify, pro_verify), which is a minor deviation but still readable and predictable within its own subgroup.
Eight tools is well-scoped for a safety/verification server. Each tool serves a distinct purpose—claim verification at three tiers, receipt checking, injection detection, content moderation, PII redaction, and action gating—without unnecessary bloat or missing essentials.
The set covers the full lifecycle of agent safety: verifying claims before use, detecting prompt injection on input, moderating output content, redacting sensitive data, and gating irreversible actions. The receipt verification tool closes the loop for auditability, and no obvious gap is apparent for the stated domain.