npm verity-mcpstdioMITupdated 1mo ago
Real-time fact-checking and data freshness agent. Verifies claims, URLs, and content against live web sources. Returns structured verdicts with confidence scores, what has changed, and supporting sources.
What can you do with verity?
VERITY — Real-Time Fact-Checking Agent
Real-time fact-checking and data freshness agent. Verifies claims, URLs, and content against live web sources. Returns structured verdicts with confidence scores, what has changed, and supporting sources.
Verdicts
| Verdict | Meaning |
|---|---|
CURRENT |
Claim is accurate and up to date |
OUTDATED |
Claim was true but has since been superseded |
DISPUTED |
Sources disagree — no clear consensus |
UNVERIFIABLE |
No usable sources found |
MCP Setup (Claude Desktop / Cursor)
{
"mcpServers": {
"verity": {
"command": "npx",
"args": ["verity-mcp"],
"env": {
"VERITY_PRIVATE_KEY": "0x..."
}
}
}
}
Get USDC on Base at coinbase.com/wallet.
Tools
| Tool | Description | Price |
|---|---|---|
verity_verify |
Verify a claim or URL against live sources | 0.10 USDC |
verity_deep_check |
Multi-angle thorough verification | 0.50 USDC |
verity_batch |
Verify up to 10 claims at once | 0.75 USDC |
verity_agent |
Natural language fact-checking | 0.10 USDC |
API
POST https://verity.basechainlabs.com/api/verify
Authorization: x402 (USDC on Base)
{
"claim": "Is GPT-4 still the most capable OpenAI model?",
"caller_id": "my-agent-id"
}
Response:
{
"verdict": "OUTDATED",
"confidence": 91,
"summary": "GPT-4 has been superseded by GPT-4o and o3.",
"what_changed": "OpenAI released GPT-4o (May 2024) and o3 (late 2024).",
"sources": [{ "url": "...", "title": "...", "published_date": "2025-01", "supports": "CONTRADICTS" }],
"checked_at": "2026-05-11T09:00:00Z",
"recommendation": "Update any content referencing GPT-4 as the most capable model."
}
Persistent Memory
Pass a consistent caller_id on every call. VERITY remembers topics you've checked, domains you monitor, and previous results — no re-sending context.
A2A Agent Card
GET https://verity.basechainlabs.com/api/agent?agent-card=true
Built by BaseChain Labs
Install
Add verity to your client. Pick the one you use.
claude mcp add verity-mcp -- npx -y verity-mcpcodex mcp add verity-mcp -- npx -y verity-mcpamp mcp add verity-mcp -- npx -y verity-mcp{
"mcpServers": {
"verity-mcp": {
"command": "npx",
"args": [
"-y",
"verity-mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"verity-mcp": {
"command": "npx",
"args": [
"-y",
"verity-mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"verity-mcp","command":"npx","args":["-y","verity-mcp"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"verity-mcp": {
"command": "npx",
"args": [
"-y",
"verity-mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"verity-mcp": {
"command": "npx",
"args": [
"-y",
"verity-mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"verity-mcp": {
"command": "npx",
"args": [
"-y",
"verity-mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"verity-mcp": {
"type": "local",
"command": "npx",
"args": [
"-y",
"verity-mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"verity-mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"verity-mcp"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y verity-mcpRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
4 tools
verity exposes 4 tools to a connected agent.
- verity_verify
- Verify a claim or URL against live sources
- verity_deep_check
- Multi-angle thorough verification
- verity_batch
- Verify up to 10 claims at once
- verity_agent
- Natural language fact-checking
Score
72 / 100
Good
- Documentation22/25
- Maintenance19/25
- Trust13/20
- Capability6/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 29 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 4 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Version history
| Versions | Published |
|---|---|
| 1.0.2Latest | May 12, 2026 |