academic-mcp
Unified academic search MCP server that searches open literature (arXiv, bioRxiv, medRxiv, PMC), CNKI, and Web of Science, with browser-backed authentication, local paper library, and export to multiple formats.
README
academic-mcp
Unified academic search MCP server for open literature, CNKI, and Web of Science.
The project combines three workflows:
- Open literature search through
deepxiv-sdkfor arXiv, bioRxiv, medRxiv, PMC, and paper reading. - Browser-backed CNKI search, detail lookup, and download with persistent Playwright login state.
- Browser-backed Web of Science advanced search, detail lookup, and export with persistent institutional authentication.
It also adds a local paper library, cross-source deduplication, search cache, named collections, and export to BibTeX, RIS, CSV, JSONL, JSON, or Markdown.
Why MCP First
MCP is the best first interface for this project because CNKI and Web of Science need user authentication, browser sessions, and occasional manual verification. MCP lets an AI assistant call the tools, ask the user to log in only when needed, and reuse the saved browser profile.
The reusable logic is kept outside the MCP tool functions in modules such as schema.py, deepxiv.py, library.py, and unified.py. That keeps the path open for a future Python SDK or web app without rewriting the search and collection logic.
Install
cd C:\Users\WeiZh\academic-mcp
uv sync --extra dev
uv run playwright install chromium
If you already use a separate scientific Conda environment, make sure the environment that runs academic-mcp can import deepxiv_sdk.
Run
uv run academic-mcp
For visible browser login:
$env:ACADEMIC_HEADLESS = "false"
uv run academic-mcp
The browser profile and downloads are stored under:
%USERPROFILE%\.academic-mcp\
Main Tools
search_literature is the unified entry point.
Fast open search:
{
"query": "structural health monitoring transformer",
"sources": "open",
"limit": 10,
"save_as": "shm-transformer"
}
Full search after CNKI/WoS login:
{
"query": "structural health monitoring transformer",
"sources": "all",
"limit": 20,
"mode": "balanced",
"save_as": "shm-transformer-all"
}
Web of Science advanced query:
{
"query": "structural health monitoring transformer",
"sources": "wos",
"wos_query": "TS=(structural health monitoring AND transformer) AND PY=(2020-2026)",
"limit": 20
}
Collection tools:
list_paper_collectionsget_paper_collectionexport_paper_collectionsave_papers_to_collection
DeepXiv tools:
search_deepxivget_deepxiv_paperget_deepxiv_pmccheck_deepxiv_status
Existing authenticated tools are still available:
- CNKI:
search_cnki,get_paper_detail,download_paper,login_cnki,check_cnki_status - WoS:
search_wos,get_wos_detail,export_wos,login_wos,check_wos_status,debug_wos
Source Strategy
For convenience, start with sources="open" because it is fast and does not require browser authentication.
For accuracy, use sources="all" after login. The unified search deduplicates by DOI, arXiv ID, and normalized title. It ranks results with a balanced score that considers source rank, citation count, source authority, and recency.
Suggested workflow:
- Use
search_literature(..., sources="open")for discovery. - Run
login_wosandlogin_cnkionce when authenticated sources are needed. - Use
search_literature(..., sources="all", save_as="..."). - Export the collection with
export_paper_collection.
Local Data
The local SQLite library is stored at:
%USERPROFILE%\.academic-mcp\library.sqlite3
Exports are written to:
%USERPROFILE%\.academic-mcp\exports\
Override paths with:
$env:ACADEMIC_LIBRARY_DB = "D:\papers\academic.sqlite3"
$env:ACADEMIC_EXPORT_DIR = "D:\papers\exports"
Tests
uv run pytest
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.