Fact Checker & Claim Verifier
Verifies claims, statistics, and quotes by cross-referencing multiple sources via Brave Search. Rates each claim's accuracy with evidence and flags misinformation patterns. Prerequisites: brave-search MCP.
MCP get_skill({ skillId: "fact-checker-claim-verifier-261bd31b" })Use this skill with your agent
Create a free account and connect via MCP
# Fact Checker & Claim Verifier
Verify claims, statistics, and quotes by cross-referencing multiple sources. Rate accuracy and flag misinformation.
## When to Use
- "Is it true that {claim}?"
- "Fact-check this article for me"
- "Verify these statistics before I use them in my presentation"
## Requirements
- **Brave Search MCP** for multi-source verification
## Workflow
### Step 1 ā Identify Claims
From user input, extract specific verifiable claims:
- Factual assertions ("X is Y")
- Statistics ("N% of people...")
- Quotes ("Person X said...")
- Historical claims ("In year X, event Y happened")
### Step 2 ā Research Each Claim
For each claim, search multiple sources:
```
brave_web_search: "{EXACT_CLAIM}"
brave_web_search: "{CLAIM_KEYWORDS} fact check"
brave_web_search: "{STATISTIC} source original study"
brave_web_search: "{QUOTE} original context {PERSON}"
```
Look for:
- Original source of the claim
- Corroborating sources
- Contradicting sources
- Established fact-check articles
### Step 3 ā Rate Each Claim
```markdown
# Fact Check Report
š
Checked: {DATE}
## Claim 1: "{CLAIM_TEXT}"
**Verdict:** ā
True / š” Mostly True / ā ļø Misleading / ā False / ā Unverifiable
**Evidence:**
- Source 1: [{Publication}]({URL}) ā {supports/contradicts} ā "{key quote}"
- Source 2: [{Publication}]({URL}) ā {supports/contradicts} ā "{key quote}"
- Source 3: [{Publication}]({URL}) ā {supports/contradicts}
**Context:** {Important nuance the claim leaves out}
**Original source:** {Where this claim originated, if findable}
---
## Claim 2: "{CLAIM_TEXT}"
**Verdict:** {rating}
...
---
## Summary
| # | Claim | Verdict | Sources |
|---|-------|---------|---------|
| 1 | {Short claim} | ā
/š”/ā ļø/ā/ā | {N} sources |
| 2 | {Short claim} | {verdict} | {N} sources |
## Methodology
- Claims verified against {N} independent sources
- Verdicts require 2+ corroborating sources for "True"
- "Misleading" = technically true but missing critical context
- "Unverifiable" = insufficient evidence to confirm or deny
```
### Step 4 ā Save Report
```bash
mkdir -p outputs/research
cat > "outputs/research/fact-check-{DATE}.md" << 'EOF'
{FACT_CHECK_REPORT}
EOF
```
## Important Rules
- Never rate a claim without searching for evidence first
- Require 2+ independent sources to rate "True"
- Always provide the original source when findable
- "Misleading" is distinct from "False" ā context matters
- Acknowledge when claims are genuinely uncertain or debated
- Avoid political bias ā verify from diverse sources
## Example Prompts
- "Is it true that humans only use 10% of their brain?"
- "Fact-check these statistics before I put them in my report"
- "Verify the claims in this article: [paste text]"Related Skills
More skills in Research & Analysis
Company Due Diligence Researcher
Conducts comprehensive research on a company via Brave Search covering financials, leadership, culture, news, and competitive landscape. Generates a diligence brief for job seekers, investors, or partners. Prerequisites: brave-search MCP, python3.
Deep Research Report Generator
Conducts multi-source research on any topic via Brave Search, synthesizes findings into a structured report with citations, key takeaways, and confidence ratings per claim. Prerequisites: brave-search MCP, python3.
News Digest & Trend Analyzer
Searches current news via Brave Search for a given topic or industry, summarizes top stories, identifies trends, and generates a formatted digest with analysis. Prerequisites: brave-search MCP, python3.
Product Comparison Matrix
Researches and compares products, tools, or services side-by-side via Brave Search with feature matrices, pricing analysis, and a recommendation based on your specific needs. Prerequisites: brave-search MCP, python3.
Explore Other Categories
Skills from other categories with shared topics
Investment Research & Stock Screener
Researches stocks, ETFs, and market data via Brave Search and public APIs. Generates comparison tables with key metrics, dividend info, and performance charts. Prerequisites: brave-search MCP, curl, jq, python3.
Trip Research & Itinerary Planner
Researches destinations via Brave Search, builds day-by-day itineraries with real venues, and generates a shareable travel plan with maps links and booking URLs. Prerequisites: brave-search MCP, jq.
/understand-chat
Use when you need to ask questions about a codebase or understand code using a knowledge graph