
Security News
White House Authorizes Private Companies to Conduct Offensive Cyber Operations
A new federal program will let vetted U.S. cybersecurity firms help investigate and disrupt foreign cybercrime groups under government direction.
@luminarylane/fact-checker-mcp
Advanced tools
Fact-Checker MCP Server - SENSE + GATE verification service with semantic cache
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.
| Tool | Description |
|---|---|
extractClaims | Extract verifiable claims from text with type and durability classification |
verifyContent | Verify outbound content — extracts claims, checks each against cache + Haiku, returns verdicts and corrected content |
verifySignal | Verify an inbound signal claim — returns a trust assessment with action recommendation |
getFactMemory | Search the fact-checker cache for previously verified claims |
| Method | Endpoint | Description |
|---|---|---|
| POST | /api/extract-claims | Extract claims from text |
| POST | /api/verify-content | Verify content (GATE tool) |
| POST | /api/verify-signal | Verify a signal claim (SENSE tool) |
| GET | /api/fact-memory?query=... | Search cached verifications |
| GET | /health | Health check |
npx -y @luminarylane/fact-checker-mcp
The command starts the server with Streamable HTTP on port 8005 by default.
git clone https://github.com/luminarylane/fact-checker-mcp.git
cd fact-checker-mcp
npm install
npm run build
Copy the example env file and add your Anthropic API key:
cp .env.example .env
# Edit .env and set ANTHROPIC_API_KEY
# Development (auto-reload)
npm run dev
# Production
npm start
The server starts two listeners:
PORT)MCP_PORT)Connect an MCP client to http://localhost:8005/mcp after starting the server.
The REST API is available on port 8004 by default. Configure both ports with
MCP_PORT and PORT if required.
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).
verifyContent / GATE)Full content verification pipeline:
publish, revise, block) with corrected contentverifySignal / SENSE)Verifies a single inbound claim (e.g., "Company X raised $50M") and returns:
verified, likely_true, uncertain, likely_false, contradictedsafe_to_act, proceed_with_caution, needs_human_review, do_not_actClaims are normalized into Subject-Predicate-Object triples via Haiku, then hashed. Equivalent claims (different wording, same meaning) produce the same fingerprint, enabling cache deduplication.
getFactMemory)Search previously verified claims by keyword. Useful for avoiding re-verification during multi-step workflows.
| Env Var | Default | Description |
|---|---|---|
ANTHROPIC_API_KEY | — | Required. Anthropic API key |
ANTHROPIC_MODEL | claude-haiku-4-5-20251001 | Model to use for verification |
REDIS_URL | — | Redis connection URL (optional) |
PORT | 8004 | REST API port |
MCP_PORT | 8005 | MCP transport port |
HOST | 0.0.0.0 | Bind address |
CACHE_TTL_PERMANENT | -1 | Cache TTL for permanent facts (seconds, -1 = no expiry) |
CACHE_TTL_DURABLE | 2592000 | Cache TTL for durable facts (30 days) |
CACHE_TTL_TRANSIENT | 86400 | Cache TTL for transient facts (1 day) |
CACHE_TTL_VOLATILE | 3600 | Cache TTL for volatile facts (1 hour) |
# 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 build
FAQs
Fact-Checker MCP Server - SENSE + GATE verification service with semantic cache
The npm package @luminarylane/fact-checker-mcp receives a total of 243 weekly downloads. As such, @luminarylane/fact-checker-mcp popularity was classified as not popular.
We found that @luminarylane/fact-checker-mcp demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
A new federal program will let vetted U.S. cybersecurity firms help investigate and disrupt foreign cybercrime groups under government direction.

Research
/Security News
The campaign amassed more than 75,000 installs by targeting Russian-speaking users seeking access to blocked services.

Company News
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.