A complete Model Context Protocol (MCP)-based Research Assistant that enables LLMs to fetch, analyze, and summarize academic research papers in real-time from multiple trusted sources: arXiv, Semantic Scholar, and PubMed.
The Research MCP system provides standardized access to academic research databases through three specialized MCP servers. Each server implements the MCP specification, allowing AI assistants to query live research data, process results, and return structured insights like summaries, comparisons, and citations.
- 📚 Multi-Source Search: Query arXiv, Semantic Scholar, and PubMed simultaneously
- 🔄 Automatic Deduplication: Smart paper matching across different sources
- 📊 Citation Analysis: Track citation counts and influential papers
- 📝 BibTeX Generation: Automatic citation formatting for all sources
- ⚡ Rate Limiting: Built-in request throttling to respect API limits
- 🎯 Advanced Filtering: Filter by year, author, venue, and more
- 🔍 Full Metadata: Complete paper information including abstracts, authors, and links
┌─────────────────────────────────────────────────────────────┐
│ LLM Client │
│ (Issues natural language queries) │
└────────────────┬────────────────────────────────────────────┘
│
│ MCP Protocol
│
┌────────────────┴───────────────────────────────────────────┐
│ MCP Servers │
│ ┌──────────┐ ┌──────────────┐ ┌──────────┐ │
│ │ arXiv │ │ Semantic │ │ PubMed │ │
│ │ Server │ │ Scholar │ │ Server │ │
│ └────┬─────┘ └──────┬───────┘ └────┬─────┘ │
└───────┼────────────────┼───────────────┼───────────────────┘
│ │ │
│ │ │
┌───────┴────────────────┴───────────────┴───────────────────┐
│ External APIs │
│ arXiv API Semantic Scholar API PubMed E-utils │
└────────────────────────────────────────────────────────────┘
- Node.js 18+
- An MCP-compatible client (Claude Desktop, Cline, etc.)
No installation or API keys needed! Just add to your MCP client configuration:
{
"mcpServers": {
"research-arxiv": {
"command": "npx",
"args": ["-y", "researchmcp", "arxiv"]
},
"research-semantic-scholar": {
"command": "npx",
"args": ["-y", "researchmcp", "semantic"]
},
"research-pubmed": {
"command": "npx",
"args": ["-y", "researchmcp", "pubmed"]
}
}
}That's it! All three servers work perfectly without any API keys or configuration.
For contributing or modifying the code:
git clone https://github.com/gyash1512/ResearchMCP.git
cd ResearchMCP
npm install
npm run buildJust configure in your MCP client - that's it! No API keys needed.
Start servers individually for testing:
npm run start:arxiv
npm run start:semantic
npm run start:pubmedSimple setup - no API keys required:
{
"mcpServers": {
"research-arxiv": {
"command": "npx",
"args": ["-y", "researchmcp", "arxiv"]
},
"research-semantic-scholar": {
"command": "npx",
"args": ["-y", "researchmcp", "semantic"]
},
"research-pubmed": {
"command": "npx",
"args": ["-y", "researchmcp", "pubmed"]
}
}
}Optional: Add API keys for higher rate limits (only if needed)
{
"mcpServers": {
"research-semantic-scholar": {
"command": "npx",
"args": ["-y", "researchmcp", "semantic"],
"env": {
"SEMANTIC_SCHOLAR_API_KEY": "your_key_here"
}
},
"research-pubmed": {
"command": "npx",
"args": ["-y", "researchmcp", "pubmed"],
"env": {
"PUBMED_API_KEY": "your_key_here",
"PUBMED_EMAIL": "[email protected]"
}
}
}
}For local development
{
"mcpServers": {
"research-arxiv": {
"command": "node",
"args": ["./dist/servers/arxiv-server.js"],
"cwd": "/absolute/path/to/ResearchMCP"
},
"research-semantic-scholar": {
"command": "node",
"args": ["./dist/servers/semantic-scholar-server.js"],
"cwd": "/absolute/path/to/ResearchMCP"
},
"research-pubmed": {
"command": "node",
"args": ["./dist/servers/pubmed-server.js"],
"cwd": "/absolute/path/to/ResearchMCP"
}
}
}Note: Replace
/absolute/path/to/ResearchMCPwith your actual project path.
Search for papers on arXiv by keyword, author, or subject.
Parameters:
query(string, required): Search querymaxResults(number, optional): Max results (default: 10, max: 100)startYear(number, optional): Filter by start yearendYear(number, optional): Filter by end yearauthor(string, optional): Filter by author namesortBy(string, optional): Sort by relevance, lastUpdatedDate, or submittedDate
Example:
{
"query": "quantum computing",
"maxResults": 5,
"startYear": 2023,
"sortBy": "relevance"
}Get detailed information about a specific arXiv paper by ID.
Parameters:
arxivId(string, required): arXiv paper ID (e.g., "2301.12345")
Convert arXiv paper to BibTeX format.
Parameters:
arxivId(string, required): arXiv paper ID
Search for papers with citation information.
Parameters:
query(string, required): Search querymaxResults(number, optional): Max results (default: 10, max: 100)startYear(number, optional): Filter by start yearendYear(number, optional): Filter by end year
Example:
{
"query": "transformer architecture",
"maxResults": 10,
"startYear": 2023
}Get paper by Semantic Scholar ID or DOI.
Parameters:
identifier(string, required): Paper ID or DOI
Get papers that cite a specific paper.
Parameters:
paperId(string, required): Semantic Scholar paper IDmaxResults(number, optional): Max citing papers (default: 10, max: 100)
Convert paper to BibTeX format.
Parameters:
identifier(string, required): Paper ID or DOI
Search biomedical and life sciences papers.
Parameters:
query(string, required): Search query (supports MeSH terms)maxResults(number, optional): Max results (default: 10, max: 100)startYear(number, optional): Filter by start yearendYear(number, optional): Filter by end year
Example:
{
"query": "cancer treatment",
"maxResults": 5,
"startYear": 2022
}Get paper by PMID.
Parameters:
pmid(string, required): PubMed ID
Convert paper to BibTeX format.
Parameters:
pmid(string, required): PubMed ID
Query: "Find recent papers on federated learning in healthcare"
Workflow:
- Search arXiv:
search_arxivwith query "federated learning healthcare", startYear: 2023 - Search Semantic Scholar:
search_semantic_scholarwith same parameters - Search PubMed:
search_pubmedwith same parameters - Combine and deduplicate results
- Sort by citation count and relevance
- Generate summary with top 5 papers
Expected Output:
- Comprehensive list of papers from all sources
- Deduplicated results
- Citation counts where available
- Links to full papers
- BibTeX citations
Query: "What's the most cited 2023 paper on quantum machine learning?"
Workflow:
- Call
search_semantic_scholar:{ "query": "quantum machine learning", "maxResults": 50, "startYear": 2023, "endYear": 2023 } - Sort results by
citationCount - Get detailed info with
get_semantic_scholar_paper - Generate BibTeX with
semantic_scholar_to_bibtex
Expected Output:
- Paper title and authors
- Citation count and venue
- Abstract and key findings
- BibTeX citation
- Link to paper
Query: "Summarize transformer innovations after 2023"
Workflow:
- Search multiple sources for "transformer architecture" papers after 2023
- Extract key information from abstracts
- Identify common themes and methods
- Generate trend analysis
- Provide top papers with citations
Expected Output:
- Overview of key innovations
- Timeline of developments
- Most influential papers
- Citation network analysis
- Recommended reading list
Query: "Find papers citing 'Attention is All You Need'"
Workflow:
- Find original paper:
search_semantic_scholarwith title - Get paper ID from results
- Call
get_paper_citationswith the paper ID - Filter by year/relevance
- Generate summary of citing papers
Expected Output:
- List of papers that cite the original work
- Citation contexts
- Related research directions
- Impact analysis
{
id: string; // arXiv ID (e.g., "2301.12345")
title: string;
authors: string[];
abstract: string;
published: string; // ISO date
updated: string; // ISO date
url: string; // Paper URL
pdfUrl: string; // PDF download URL
categories: string[]; // Subject categories
primaryCategory: string;
}{
paperId: string;
title: string;
abstract: string | null;
year: number | null;
authors: Array<{
authorId: string;
name: string;
}>;
citationCount: number;
referenceCount: number;
influentialCitationCount: number;
url: string;
venue: string | null;
publicationDate: string | null;
}{
pmid: string; // PubMed ID
title: string;
abstract: string;
authors: string[];
journal: string;
year: string;
doi: string | null;
url: string;
publicationTypes: string[];
meshTerms: string[]; // Medical Subject Headings
}All servers work great without API keys:
| Server | Default Rate | With API Key | Do You Need Keys? |
|---|---|---|---|
| arXiv | 3 req/sec | N/A | ❌ No - works perfectly! |
| Semantic Scholar | 1-3 req/sec | 10 req/sec | ❌ No - unless making 100+ queries/min |
| PubMed | 3 req/sec | 10 req/sec | ❌ No - unless making 100+ queries/min |
Recommendation: Start without any API keys. Only add them if you hit rate limits.
- No API keys needed - all servers work out of the box
- If using API keys, pass via MCP config
envsection (see optional config above) - Never commit API keys to version control
- Respect API rate limits and terms of service
This implementation follows the Model Context Protocol specification:
- ✅ Standard tool definition schema
- ✅ JSON-based request/response format
- ✅ Error handling with proper status codes
- ✅ Resource management and cleanup
- ✅ Stdio transport for client communication
Contributions are welcome! Areas for improvement:
- Additional research sources (IEEE, ACM, etc.)
- Advanced filtering and ranking algorithms
- Paper recommendation system
- Citation graph visualization
- Full-text analysis capabilities
MIT License - See LICENSE file for details
- arXiv for open access to research papers
- Semantic Scholar for citation data and API
- PubMed/NCBI for biomedical research database
- Model Context Protocol team for the MCP specification
For issues, questions, or contributions:
- Open an issue on GitHub
- Check API documentation for each service
- Review MCP specification for protocol details
Built with ❤️ using TypeScript and the Model Context Protocol