MCP Server
Active
MIT
io.github.Clawdio777/verity MCP Server
io.github.Clawdio777/verity
What is the io.github.Clawdio777/verity MCP server?
Real-time fact-checking MCP. Verifies claims against live sources with structured verdicts.
How to install io.github.Clawdio777/verity
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Environment / auth
VERITY_PRIVATE_KEYrequiredsecretBase wallet private key (0x...) — used to sign x402 payments in USDC on Base. Per-call: 0.10 USDC (verify), 0.50 USDC (deep-check), 0.75 USDC (batch).
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"verity": {
"command": "npx",
"args": [
"-y",
"verity-mcp"
],
"env": {
"VERITY_PRIVATE_KEY": "<YOUR_VERITY_PRIVATE_KEY>"
}
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"verity": {
"command": "npx",
"args": [
"-y",
"verity-mcp"
],
"env": {
"VERITY_PRIVATE_KEY": "<YOUR_VERITY_PRIVATE_KEY>"
}
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"verity": {
"command": "npx",
"args": [
"-y",
"verity-mcp"
],
"env": {
"VERITY_PRIVATE_KEY": "<YOUR_VERITY_PRIVATE_KEY>"
}
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"verity": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"verity-mcp"
],
"env": {
"VERITY_PRIVATE_KEY": "<YOUR_VERITY_PRIVATE_KEY>"
}
}
}
}Claude Code
claude mcp add verity --env VERITY_PRIVATE_KEY=<YOUR_VERITY_PRIVATE_KEY> -- npx -y verity-mcpRelated MCP servers
AI search visibility MCP. Get cited by ChatGPT, Perplexity, Claude, and Google AI Overviews.
0
View repository →TypeScript
MIT