Google Scholar MCP Server
Allows searching for academic articles on Google Scholar, retrieving articles citing a specific paper, and getting all versions of an article from different sources.
Provides access to full-text Open Access articles via the CORE API, enabling retrieval of article full text, searching for articles with full-text available, and answering research questions using evidence from papers.
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., "@Google Scholar MCP Serversearch for transformer neural networks from 2023"
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.
Google Scholar MCP Server
MCP server for academic research via Claude Code. Search Google Scholar and access Open Access full-text articles.
Features
Google Scholar Search via SerpAPI
Search academic articles by query, year, language
Get articles citing a specific paper
Get all versions of an article from different sources
Full-text Access via CORE API
Retrieve full text of Open Access articles
Search specifically for articles with full-text available
Answer research questions using evidence from papers (RAG pattern)
Related MCP server: AI Research Assistant - Semantic Scholar
Tools
Tool | Description |
| Search for academic articles on Google Scholar |
| Get articles citing a specific paper |
| Get all versions of an article |
| Get full text of Open Access article |
| Search for articles with full-text |
| Answer research questions using evidence from Open Access papers |
Quick Start
1. Get API Keys
SerpAPI (Required)
Sign up at serpapi.com
Free tier: 100 searches/month
Paid plans from $75/month for 5,000 searches
CORE API (Optional, for full-text)
Register at core.ac.uk/api-keys/register
Free: 100,000 requests/day
2. Install
git clone https://github.com/alimov-andrey/google-scholar-mcp.git
cd google-scholar-mcp
uv pip install -e .3. Configure Environment
cp .env.example .env
# Edit .env and add your API keys:
# SERPAPI_API_KEY=your_key_here
# CORE_API_KEY=your_key_here # optional4. Configure Claude Code
Option A: Global config (~/.claude/claude_mcp_config.json)
{
"mcpServers": {
"google-scholar": {
"command": "bash",
"args": ["-c", "cd /path/to/google-scholar-mcp && exec python -m src.main"]
}
}
}Option B: Project config (.mcp.json in project root)
{
"mcpServers": {
"google-scholar": {
"command": "bash",
"args": ["-c", "cd /path/to/google-scholar-mcp && exec python -m src.main"]
}
}
}Usage Examples
Search Articles
Search for "transformer neural networks" articles from 2023Get Citations
Get articles citing this paper (use citation_id from search results)Get Full Text
Get full text for article with DOI 10.1234/exampleProject Structure
google-scholar-mcp/
├── src/
│ ├── main.py # FastMCP server entry point
│ ├── config.py # Pydantic settings
│ ├── clients/
│ │ ├── exceptions.py # APIError, RateLimitError, AuthenticationError
│ │ ├── serpapi.py # SerpAPI async client with retry
│ │ └── core_api.py # CORE API async client with retry
│ ├── models/
│ │ └── scholar.py # Pydantic response models
│ └── tools/
│ ├── scholar.py # Google Scholar tools
│ └── fulltext.py # Full-text access tools
├── tests/ # Unit tests (86 tests)
├── pyproject.toml
└── .github/workflows/
└── test.yml # CI pipelineDevelopment
# Install with dev dependencies
uv pip install -e ".[dev]"
# Run tests
pytest tests/ -v
# Run server locally
python -m src.mainTech Stack
Python 3.12+ with FastMCP 2.14
httpx for async HTTP with retry logic
Pydantic for data validation
stdio transport for MCP communication
License
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/alimov-andrey/google-scholar-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server