verity for VS Code
io.github.clawdio777/verity
Real-time fact-checking MCP. Verifies claims against live sources with structured verdicts.
client:VS Code
transport:stdio
runtime:npm
Install verity in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "verity-private-key",
"description": "VERITY_PRIVATE_KEY",
"password": true
}
],
"servers": {
"verity": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"verity-mcp"
],
"env": {
"VERITY_PRIVATE_KEY": "${input:verity-private-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs