Skip to content
Back to search
100
MCP live MCP 2025-11-25 streamable-http

Citation Safe Verifier

com.citationsafe/verifier

Verifies legal citations vs primary sources: existence, quote match, proposition support.

Uptime
100.0%
1 direct probes · 30d
Response
928ms
last probe
Tools
8
callable
Resources
0
readable
Prompts
0
available

Tools · 8

verify_citation

Checks every legal citation in the given text against primary sources: does the cited case exist (Layer 1, CourtListener database lookup — deterministic, no LLM), does a quoted passage appear in the s…

verify_document

Fetches a document (PDF, DOCX, or plain text) from a URL and runs the same 3-layer citation verification as verify_citation. Use this when you have a link to a brief rather than pasted text.

get_verification

Retrieves a previously run CitationSafe verification (by the verificationId returned from verify_citation/verify_document, or from a citationsafe.com/v/{id} share link) and returns its full per-citati…

batch_verify_citations

Runs the same 3-layer citation verification as verify_citation across multiple texts in a single call. Each item is billed against your CitationSafe usage exactly like an individual verify_citation ca…

search_sanctions

Searches CitationSafe's database of real court sanctions/orders arising from AI-hallucinated legal citations, by court name, party/case name keyword, or free-text keyword. Read-only, public data — sam…

is_this_case_real

Deterministic existence check (Layer 1 only, no LLM) for one legal citation against CourtListener's primary-source database. Answers the single question "is this case real" for one citation — for mult…

verify_brief

Runs existence (Layer 1) and quote-match (Layer 2) checks — both deterministic, no LLM — on every citation found in the given text and returns one verdict per citation. The multi-citation counterpart …

search_phantoms

Searches CitationSafe's phantom-citation registry — fabricated case names/citations that have shown up in real, sanctioned AI-hallucination incidents — by case name or the AI system that produced them…

How to use

Add to your Claude Desktop / Cursor / Cline MCP config:

{
  "mcpServers": {
    "citation_safe_verifier": {
      "url": "https://citationsafe.com/api/mcp",
      "transport": "streamable-http"
    }
  }
}