Claim verification engine. Claim in, verdict out.
Part of the reverberage ecosystem — composable MCP-native toolkits for audio, video, and text.
pip install rvrb-verifyRequires DASHSCOPE_API_KEY env var (or install n3rverberage for multi-provider support).
rvrb-verify "The sky is blue"
rvrb-verify "Water boils at 100°C" --strategy research --jsonfrom rvrb_verify import verify
verdict = verify("The sky is green")
print(f"Verdict: {verdict.verdict.value}")
print(f"Confidence: {verdict.confidence:.1%}")
print(f"Summary: {verdict.summary}")rvrb-verify-mcpCompatible with any MCP client (Claude Desktop, Continue.dev, etc.).
| Strategy | Description | Tools |
|---|---|---|
fact-check |
General claim verification | Web search, news search |
legal |
Legal analysis | Statute search, case law search |
research |
Academic validation | Paper search, arXiv search |
Apache-2.0 — same as the reverberage ecosystem.