UniArticles MCP Server
Unifies academic literature retrieval from multiple sources like Scopus, ArXiv, PubMed, and Google Scholar into a single standardized API for LLM agents.
README
UniArticles MCP Server
Overview
UniArticles(亿文通) is a unified academic literature retrieval server implementing the Model Context Protocol (MCP). Integrates multiple scholarly databases (Scopus, ArXiv) and literature APIs (PubMed, Google Scholar) into a single, standardized API for LLM agents (like Claude).
Features
- Unified Interface: Single search structure for all sources.
- Multi-Source Support:
- Scopus: Search, abstract details, author profiles, author search, quota check.
- ScienceDirect: Article search, metadata search, full-text retrieval (requires entitlement).
- ArXiv: Search papers, search by ID, list recent papers, download PDF.
- Paperscraper APIs: PubMed search and Google Scholar title search.
- Google Scholar Stability Notice: Google Scholar access may be unstable or temporarily unavailable; this part is experimental/test-only.
- Standardized Returns: Consistent JSON structure (
ok,source,query,count,items,error). - Secure Configuration: API keys managed via environment variables.
⚠️ API Key Requirements
This server integrates multiple data sources, and some advanced features require API keys:
- Elsevier API (Scopus database, Required):
- How to get: Apply at Elsevier Developer Portal.
- Restriction: Your institution must have a subscription to Elsevier's services; otherwise, you cannot use related functions even with an API Key.
- Clarification: Scopus is an Elsevier database. The
SCOPUS_API_KEYconfigured here is an Elsevier API key and may also be used for other Elsevier API services allowed by your subscription and key scope.
Note: Even without the above API key, you can still use other functions normally.
Installation & Usage
Method 1: Direct Integration with LLM Clients (Recommended)
Suitable for Cherry Studio, LM Studio, Claude Desktop, Trae, etc.
This project is published on PyPI, so you can configure it directly without downloading the full source code. Since these LLM clients are already configured with Python and uv environments, no additional downloads are required.
Simply add the following configuration to your client's MCP settings (e.g., claude_desktop_config.json):
{
"mcpServers": {
"uniarticles-mcp-server": {
"command": "uvx",
"args": [
"--refresh",
"uniarticles-mcp"
],
"env": {
"SCOPUS_API_KEY": "your_elsevier_api_key_here"
}
}
}
}
If you do not want to force refresh the cache package every time you restart, then instead add the following content: (but this will cause you to need to manually update the package when the package is updated)
{
"mcpServers": {
"uniarticles-mcp-server": {
"command": "uvx",
"args": [
"uniarticles-mcp"
],
"env": {
"SCOPUS_API_KEY": "your_elsevier_api_key_here"
}
}
}
}
📖 Troubleshooting? See: Step-by-Step Configuration Guide
If you encounter MCP error -32000: Connection closed when starting the service, please find the solution in the related Cherry Studio issue: https://github.com/CherryHQ/cherry-studio/issues/3264
Method 2: Local Installation (Advanced)
Requires Python 3.10+ and uv (recommended) or pip. Useful for developers or those who want to modify the source code.
Using uv:
# Clone the repository
git clone https://github.com/your-username/UniArticles_MCPserver.git
cd UniArticles_MCPserver
# Sync dependencies and run
uv sync
uv run uniarticles-mcp
Using pip:
# Clone and setup venv
python -m venv .venv
source .venv/bin/activate # Windows: .venv\Scripts\activate
# Install dependencies
pip install -e .
# Run
python -m uniarticles
Configuration
Create a .env file in the project root:
SCOPUS_API_KEY=your_elsevier_api_key
ARXIV_DOWNLOAD_DIR=./arxiv_downloads
Project Structure
src/
└── uniarticles/
├── server.py # MCP Server entry point
└── sources/ # Data source modules
├── arxiv.py
├── paperscraper.py
├── scopus.py
└── ...
tests/ # Integration and verification tests
pyproject.toml # Project metadata and dependencies
Testing
Run automated integration tests:
python -m unittest discover tests
Verify MCP protocol handshake:
python tests/verify_server.py
Available Tools
Scopus
search_scopus(query, count, sort, view): Search for documents.get_abstract_details(eid, view): Get detailed abstract information.get_author_profile(author_id, view): Get author profile information.search_authors(query, count, view): Search Scopus authors.get_quota_status(): Check Elsevier API quota (via Scopus endpoint).
ScienceDirect
search_sciencedirect(query, count, start, view): Search ScienceDirect records.get_article_metadata(query, count, start, view): Search article metadata.retrieve_article(identifier, identifier_type, view): Retrieve full-text article record.
ArXiv
search_arxiv(query, max_results): Search papers.list_papers(max_results): List recent papers.read_paper(paper_id): Get paper metadata.download_paper(paper_id, filename, output_dir): Download PDF.
Paperscraper
search_pubmed_papers(query, max_results): Search papers from PubMed.search_scholar_papers(title): Search paper metadata from Google Scholar by title (experimental; may fail when Google Scholar is unstable).
🤝 Call for Contributions
Due to the author's background in Chemistry, I am less familiar with databases and API developments in other research fields. I warmly welcome contributions and Pull Requests (PRs) from the community to add more data sources!
⚖️ License & Acknowledgments
License
AGPL-3.0 License with Commercial Restriction
This project is licensed under the GNU Affero General Public License v3.0 (AGPL-3.0).
🔴 Commercial Use Restriction: Commercial use of this software is permitted ONLY with explicit written authorization from the author.
Special Acknowledgments
-
ScopusMCP: ScopusMCP is the first literature retrieval MCP tool the author successfully developed, but initially it was quite bloated and difficult to port.Thanks to my roommate (https://github.com/qwe4559999) for the suggestion to use pypi and uv for packaging.
-
ArxivMCPserver: Integrated directly from the ArxivMCPserver project.
Special Declaration
This project uses AI-generated content.
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
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.
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.