@insnapsprakhar/verification-mcp
v0.1.0
Published
npx launcher for Verification (fact-check + cite-check) MCP — hosted on Cloudflare Workers. Real-time fact-checking + citation verification + source-freshness for AI agents
Maintainers
Readme
@insnapsprakhar/verification-mcp
npx-installable launcher for Verification (fact-check + cite-check) — a hosted MCP server on Cloudflare Workers.
Real-time fact-checking + citation verification + source-freshness for AI agents. Wikipedia, Wikidata, Crossref, Wayback Machine — all free underlying data.
Install / use directly
npx -y @insnapsprakhar/verification-mcpThat's it. The package shells out to mcp-remote and points it at the hosted endpoint:
https://verification-mcp.atlasword.workers.dev/mcpMCP client config
Cursor / Claude Desktop / Cline / Windsurf
{
"mcpServers": {
"verification": {
"command": "npx",
"args": ["-y", "@insnapsprakhar/verification-mcp"]
}
}
}With a paid API key (optional)
The free tier is anonymous (~100 calls/month/IP). For higher limits, grab a key
from https://verification-mcp.atlasword.workers.dev and pass it via env:
{
"mcpServers": {
"verification": {
"command": "npx",
"args": ["-y", "@insnapsprakhar/verification-mcp", "--header", "Authorization:Bearer ${MCP_KEY}"],
"env": { "MCP_KEY": "mck_..." }
}
}
}Direct HTTP (no Node)
curl -sS -X POST https://verification-mcp.atlasword.workers.dev/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'Source
- Source repo: https://github.com/guptaprakhariitr/verification-mcp
- All 17 MCPs: https://mcp-hub.atlasword.workers.dev
- License: MIT
