academic-mcp
Allows searching for and retrieving academic papers from arXiv, including preprint and open access literature, via the deepxiv-sdk.
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., "@academic-mcpsearch open literature for transformer structural health monitoring"
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.
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 chromiumIf you already use a separate scientific Conda environment, make sure the environment that runs academic-mcp can import deepxiv_sdk.
Run
uv run academic-mcpFor visible browser login:
$env:ACADEMIC_HEADLESS = "false"
uv run academic-mcpThe 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_statusWoS:
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.sqlite3Exports 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 pytestResources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/dopawei/academic-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server