Server data from the Official MCP Registry
Open watchdog for retracted & problematic citations: Retraction Watch, OpenAlex, Crossref.
Open watchdog for retracted & problematic citations: Retraction Watch, OpenAlex, Crossref.
CiteGuard is a well-structured research-integrity tool with clean architecture and appropriate security patterns. The codebase demonstrates good input validation, proper use of environment variables for credentials, and conservative resolution logic with strong invariants. No critical vulnerabilities or malicious patterns detected. Minor observations include broad exception handling in some areas and reliance on external API rate limits, but these are acceptable for the tool's purpose. Supply chain analysis found 3 known vulnerabilities in dependencies (0 critical, 3 high severity). Package verification found 1 issue.
7 files analyzed · 8 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Set these up before or after installing:
Environment variable: OPENALEX_API_KEY
Environment variable: CITEGUARD_MAILTO
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-lonexreb-retractguard": {
"env": {
"CITEGUARD_MAILTO": "your-citeguard-mailto-here",
"OPENALEX_API_KEY": "your-openalex-api-key-here"
},
"args": [
"retractguard"
],
"command": "uvx"
}
}
}From the project's GitHub README.
The free, open, OpenAlex-native watchdog for retracted and problematic citations.
CiteGuard tells you — and keeps telling you — when your references, your authors, or your institution's papers cite research the community has flagged as retracted, corrected, or subject to an expression of concern.
It exists because the existing options each fall short: scite is proprietary and paywalled,
RetractoBot had to license Scopus (no open citation database existed at the time), and
OpenAlex collapses all editorial status into a single is_retracted boolean that can't tell
a retraction from a correction — and has produced false positives in the past.
Now that the Retraction Watch dataset is open (via Crossref) and the OpenAlex citation graph is CC0, CiteGuard can do this fully in the open, for free.
Status: early development. Building the MVP. See
GOAL.mdfor the mission andCLAUDE.mdfor the build guide.
.bib file → get a per-reference
status: retracted, corrected, expression of concern, hijacked-journal, or clean.check_references, get_editorial_status, watch_institution) for Claude, Cursor, and
any MCP-compatible client.Integrity tooling can do real harm if it's wrong — a false "retracted" flag damages a real
author. CiteGuard is conservative by design: it corroborates before flagging, prefers
the documented editorial notice, and marks a work UNKNOWN rather than guess. Every core
capability ships with a published eval reporting precision and recall on a gold set.
One core, two surfaces.
┌─────────────────────────────┐
OpenAlex ─────▶ │
(CC0 graph) │ editorial-status model │──▶ MCP server
│ + resolution logic │ (check_references,
Retraction ──▶│ (conservative) │ get_editorial_status,
Watch (open) │ │ watch_institution)
│ │──▶ reference-list checker
Crossref ─────▶ │ (DOI / .bib → statuses,
(DOI norm.) └─────────────────────────────┘ thin web UI)
Repository layout:
src/citeguard/
openalex.py # keyed, rate-aware, ID-lookup-first OpenAlex client
retractionwatch.py # ingest + normalize the Retraction Watch dump
status.py # the EditorialStatus model + resolution logic (core)
checker.py # reference-list checker (DOI / .bib -> statuses)
mcp_server.py # MCP server exposing the three tools
tests/ # pytest unit + functional tests
evals/ # gold sets + precision/recall harness
data/ # local RW dump + cached lookups (gitignored)
Requires Python 3.11+ and uv.
uv sync # install dependencies
export OPENALEX_API_KEY=... # your OpenAlex key
export CITEGUARD_MAILTO=you@example.org # polite-pool contact
uv run pytest # run tests
uv run python -m evals.run # run the eval harness (precision/recall)
uv run python -m citeguard.mcp_server # launch the MCP server locally
CiteGuard exposes get_editorial_status, check_references, and watch_institution
to any MCP client. After pip install retractguard (or uv tool install retractguard),
the retractguard-mcp command launches the stdio server.
Claude Desktop — add to claude_desktop_config.json:
{
"mcpServers": {
"retractguard": {
"command": "retractguard-mcp",
"env": {
"OPENALEX_API_KEY": "your-key",
"CITEGUARD_MAILTO": "you@example.org"
}
}
}
}
Cursor / other clients — point them at the same retractguard-mcp command (stdio
transport). Running from a checkout instead of an install? Use
"command": "uv", "args": ["run", "retractguard-mcp"] with "cwd" set to the repo.
On first call the server downloads the Retraction Watch dump (~65 MB, free) into
CITEGUARD_DATA_DIR (default ./data). Editorial-notice lookups (Retraction Watch,
Crossref) need no key; OpenAlex corroboration and watch_institution do.
A thin web UI for people who don't live in an editor — paste DOIs or drop a .bib file,
get a per-reference status table.
retractguard-web # then open http://127.0.0.1:8000
# or from a checkout: uv run python -m citeguard.web
Add Accept: application/json to POST /check to get the results as JSON instead of a
table. It reuses the same conservative resolution logic as the MCP server — no separate
code path, no separate trust model.
status.py — the normalized editorial-status model (foundation)retractionwatch.py — ingest + normalize the Retraction Watch dumpopenalex.py — keyed, ID-first clientchecker.py — DOI / .bib → statusesmcp_server.py — expose the three toolsevals/ — gold set + precision/recall harness (running from step 2 onward)CiteGuard is independent and not affiliated with these projects; it builds on their open data with gratitude.
MIT (see LICENSE) — permissive and maximally reusable, in keeping with the
open-science ethos in GOAL.md.
The code is CiteGuard's. The data it builds on is not and carries its own terms:
Retraction Watch (via Crossref) and OpenAlex/Crossref metadata. CiteGuard redistributes
only a tiny evaluation extract (see evals/fixtures/ATTRIBUTION.md); anything at scale
should be fetched from the upstream sources under their licenses.
Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Web content fetching and conversion for efficient LLM usage
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.