# VERITY — Real-Time Fact-Checking Agent

Real-time fact-checking agent. Verifies claims against live web sources.

## Quick Start

```bash
# Connect this server (installs CLI if needed)
npx -y smithery mcp add clawdio777/verity

# Browse available tools
npx -y smithery tool list clawdio777/verity

# Get full schema for a tool
npx -y smithery tool get clawdio777/verity verity_verify

# Call a tool
npx -y smithery tool call clawdio777/verity verity_verify '{}'
```

## Direct MCP Connection

Endpoint: `https://verity--clawdio777.run.tools`

**Required config:**
- `VERITY_PRIVATE_KEY` (header) — Your Base wallet private key (0x...) with USDC on Base for x402 payments

**Optional config:**
- `CALLER_ID` (header) — Optional: your agent or user ID for persistent memory across sessions

## Tools (4)

- `verity_verify` — Verify a claim, URL, or statement against live web sources. Returns CURRENT/OUTDATED/DISPUTED/UNVERIFIABLE verdict, con…
- `verity_deep_check` — Thorough multi-angle verification with advanced search depth. Cross-references 5+ angles and authoritative sources. Hig…
- `verity_batch` — Verify up to 10 claims in one call. Returns an array of verdicts. Use for content audits and fact-check pipelines. 0.75…
- `verity_agent` — Natural language fact-checking. Ask anything: 'Is this still true?', 'When was this last updated?', 'Check this URL'. V…

```bash
# Get full input/output schema for a tool
npx -y smithery tool get clawdio777/verity <tool-name>
```

## Prompts (5)

- `verify-claim` (claim) — Verify a specific claim against live sources
- `check-url` (url) — Check if a URL's content is still current and accurate
- `content-audit` (content) — Audit a piece of content for outdated claims
- `deep-verify` (claim) — Thorough multi-angle verification for high-stakes fact-checks
- `freshness-check` (topic) — Check how fresh/current a topic or data point is
