Fact-Checker MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Fact-Checker MCP Serververify claim: 'The Great Wall of China is visible from space'"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Fact-Checker MCP Server
A Model Context Protocol (MCP) server that provides AI-powered fact-checking and claim verification. Uses Claude Haiku for claim extraction, SPO-based semantic fingerprinting, and Redis caching for deduplication.
Exposes both an MCP (StreamableHTTP) interface for AI agents and a REST API for HTTP clients.
Features
MCP Tools
Tool | Description |
| Extract verifiable claims from text with type and durability classification |
| Verify outbound content — extracts claims, checks each against cache + Haiku, returns verdicts and corrected content |
| Verify an inbound signal claim — returns a trust assessment with action recommendation |
| Search the fact-checker cache for previously verified claims |
REST API
Method | Endpoint | Description |
POST |
| Extract claims from text |
POST |
| Verify content (GATE tool) |
POST |
| Verify a signal claim (SENSE tool) |
GET |
| Search cached verifications |
GET |
| Health check |
Related MCP server: truth-anchor-agent
Quick Start
Prerequisites
Node.js 20+
Redis (optional — caching is gracefully skipped when unavailable)
Install
git clone https://github.com/luminarylane/fact-checker-mcp.git
cd fact-checker-mcp
npm install
npm run buildConfigure
Copy the example env file and add your Anthropic API key:
cp .env.example .env
# Edit .env and set ANTHROPIC_API_KEYRun
# Development (auto-reload)
npm run dev
# Production
npm startThe server starts two listeners:
REST API on port 8004 (configurable via
PORT)MCP transport on port 8005 (configurable via
MCP_PORT)
Claude Desktop Configuration
Add to your claude_desktop_config.json:
{
"mcpServers": {
"fact-checker": {
"command": "node",
"args": ["/path/to/fact-checker-mcp/dist/index.js"]
}
}
}How It Works
Claim Extraction (extractClaims)
Extracts verifiable claims from text using Claude Haiku. Each claim is classified by type (statistic, company_fact, quote, product_claim, market_assertion, opinion) and durability (permanent, durable, transient, volatile).
Content Verification (verifyContent / GATE)
Full content verification pipeline:
Extract claims from content
Fingerprint each claim using SPO (Subject-Predicate-Object) triples
Check Redis cache for previously verified claims
Verify uncached claims via Claude Haiku with optional brand data and web context
Return verdicts (
publish,revise,block) with corrected content
Signal Verification (verifySignal / SENSE)
Verifies a single inbound claim (e.g., "Company X raised $50M") and returns:
Signal verdict:
verified,likely_true,uncertain,likely_false,contradictedAction recommendation:
safe_to_act,proceed_with_caution,needs_human_review,do_not_act
Semantic Fingerprinting
Claims are normalized into Subject-Predicate-Object triples via Haiku, then hashed. Equivalent claims (different wording, same meaning) produce the same fingerprint, enabling cache deduplication.
Fact Memory (getFactMemory)
Search previously verified claims by keyword. Useful for avoiding re-verification during multi-step workflows.
Configuration
Env Var | Default | Description |
| — | Required. Anthropic API key |
|
| Model to use for verification |
| — | Redis connection URL (optional) |
|
| REST API port |
|
| MCP transport port |
|
| Bind address |
|
| Cache TTL for permanent facts (seconds, -1 = no expiry) |
|
| Cache TTL for durable facts (30 days) |
|
| Cache TTL for transient facts (1 day) |
|
| Cache TTL for volatile facts (1 hour) |
Architecture
Transport: StreamableHTTP (MCP) + Express (REST)
AI: Claude Haiku for claim extraction, verification, and SPO fingerprinting
Cache: Redis with durability-based TTLs (gracefully degrades without Redis)
Rate Limiting: Token-bucket rate limiter for Anthropic API calls (100 req/min)
Safety: Untrusted content wrapped with hashed markers for prompt injection defence
Development
# Development server (auto-reload)
npm run dev
# Type check
npx tsc --noEmit
# Run tests
npm test
# Test with coverage
npm run test:coverage
# Build
npm run buildLicense
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/luminarylane/fact-checker-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server