Allows for verifying academic papers and books against the DBLP computer science bibliography to ensure the accuracy of BibTeX citations.
Enables verification of academic citations against the Semantic Scholar database, featuring author name match tolerance and support for API keys to handle higher rate limits.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@harcx-mcpverify the citations in references.bib"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
harcx-mcp
MCP server for verifying BibTeX citations using harcx. Allows AI assistants like Claude to check your bibliography against Semantic Scholar, DBLP, and other academic databases.
Thanks to the original harcx package for providing the citation verification functionality.
Quick Setup
Create a
.vscodefolder in your project (if it doesn't exist)Create
.vscode/mcp.jsonwith:{ "servers": { "harcx": { "command": "python", "args": ["/path/to/harcx_mcp.py"] } } }Use
#harcxin Claude Code to access the tools:verify citations in references.bib verify urls in references.bib
Installation
Usage
With Claude Code
Add to your project's .mcp.json:
Then ask Claude to verify your citations:
With Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
Tools
verify_citations
Verify academic papers and books against Semantic Scholar and DBLP.
Parameters:
bib_content(required): Path to .bib file or inline BibTeX contentauthor_threshold(optional): Author name match tolerance, 0.0-1.0 (default: 0.6)check_urls(optional): Also verify URLs in citations (default: false)api_key(optional): Semantic Scholar API key for higher rate limits
Example:
verify_urls
Check that URLs in your bibliography are accessible.
Parameters:
bib_content(required): Path to .bib file or inline BibTeX content
Example:
Rate Limits
Semantic Scholar has rate limits. If you're checking many citations, you may see 429 errors and retries. For higher limits, get a free API key from Semantic Scholar and pass it via the api_key parameter.
License
MIT