Add refcheck: academic reference verification server#3406
Closed
benchoi93 wants to merge 1 commit intomodelcontextprotocol:mainfrom
Closed
Add refcheck: academic reference verification server#3406benchoi93 wants to merge 1 commit intomodelcontextprotocol:mainfrom
benchoi93 wants to merge 1 commit intomodelcontextprotocol:mainfrom
Conversation
Author
|
Closing — submitting to the MCP Server Registry (modelcontextprotocol/registry) instead per the repo's updated policy. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds refcheck to the community servers list — an MCP server that verifies academic references against real publication databases.
What it does
verify_reference— Checks if a citation is real by fuzzy-matching against Crossref, Semantic Scholar, arXiv, Scopus, and IEEE Xplore. Returnsverified,partial_match, ornot_foundwith confidence score and corrected BibTeX.search_references— Finds real papers on a topic. Only returns database-backed results.get_bibtex— Exports publication-ready BibTeX by DOI, title, or Semantic Scholar ID. Supports batch export.Why it matters
LLMs frequently hallucinate academic citations — plausible-looking references with fabricated titles, authors, DOIs, or venues. This MCP server gives AI assistants direct access to real publication databases so every citation can be verified before use.
Tech stack
Python, FastMCP, httpx (async), Pydantic v2, rapidfuzz. Works with zero API keys (Crossref + arXiv are free), with optional keys for Semantic Scholar, Scopus, and IEEE Xplore.