.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all β†’

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out β†’
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with β™₯ Β· Β© 2026 aaaa.fyi

Independent project Β· real data from public registries

…/jackkuo666/google-scholar-mcp-server
home/mcp-servers/jackkuo666/google-scholar-mcp-server
jackkuo666 avatar

google-scholar-mcp-server

byjackkuo666Β· 6 MCP servers

Stars

383

Forks

59

Category

Research

View on GitHub

TL;DR

πŸ” Enable AI assistants to search and access Google Scholar papers through a simple MCP interface.

How to install google-scholar-mcp-server?

jackkuo666/google-scholar-mcp-server
$git clone https://github.com/jackkuo666/google-scholar-mcp-server

Installs into the current project.

β€ΊPrefer a prompt? Paste this to your agent

Install & use

Install google-scholar-mcp-server by running `git clone https://github.com/jackkuo666/google-scholar-mcp-server`, then use it for the current task and follow its documentation at https://github.com/jackkuo666/google-scholar-mcp-server.

Files Β· 1

View on GitHub
README.md
1# Google Scholar MCP Server
2[![smithery badge](https://smithery.ai/badge/@JackKuo666/google-scholar-mcp-server)](https://smithery.ai/server/@JackKuo666/google-scholar-mcp-server)
3Β 
4πŸ” Enable AI assistants to search and access Google Scholar papers through a simple MCP interface.
5Β 
6The Google Scholar MCP Server provides a bridge between AI assistants and Google Scholar through the Model Context Protocol (MCP). It allows AI models to search for academic papers and access their content in a programmatic way.
7Β 
8## ✨ Core Features
9- πŸ”Ž Paper Search: Query Google Scholar papers with custom search strings or advanced search parameters βœ…
10- πŸš€ Efficient Retrieval: Fast access to paper metadata βœ…
11- πŸ‘€ Author Information: Retrieve detailed information about authors βœ…
12- πŸ“Š Research Support: Facilitate academic research and analysis βœ…
13Β 
14## πŸš€ Quick Start
15Β 
16### Installing Manually
17### Installing via Smithery
18Β 
19To install google-scholar Server for Claude Desktop automatically via [Smithery](https://smithery.ai/server/@JackKuo666/google-scholar-mcp-server):
20Β 
21#### claude
22Β 
23```sh
24npx -y @smithery/cli@latest install @JackKuo666/google-scholar-mcp-server --client claude --config "{}"
25```
26Β 
27#### Cursor
28Β 
29Paste the following into Settings β†’ Cursor Settings β†’ MCP β†’ Add new server:
30- Mac/Linux
31```s
32npx -y @smithery/cli@latest run @JackKuo666/google-scholar-mcp-server --client cursor --config "{}"
33```
34#### Windsurf
35```sh
36npx -y @smithery/cli@latest install @JackKuo666/google-scholar-mcp-server --client windsurf --config "{}"
37```
38### CLine
39```sh
40npx -y @smithery/cli@latest install @JackKuo666/google-scholar-mcp-server --client cline --config "{}"
41```
42Β 
431. Clone the repository:
44 ```
45 git clone https://github.com/JackKuo666/google-scholar-MCP-Server.git
46 cd google-scholar-MCP-Server
47 ```
48Β 
492. Install the required dependencies:
50 ```
51 pip install -r requirements.txt
52 ```
53Β 
54Β 
55For development:
56Β 
57```bash
58# Clone and set up development environment
59git clone https://github.com/JackKuo666/Google-Scholar-MCP-Server.git
60cd Google-Scholar-MCP-Server
61Β 
62# Create and activate virtual environment
63python -m venv venv
64source venv/bin/activate # On Windows use `venv\Scripts\activate`
65Β 
66# Install dependencies
67pip install -r requirements.txt
68```
69Β 
70## πŸ“Š Usage
71Β 
72Start the MCP server:
73Β 
74```bash
75python google_scholar_server.py
76```
77Β 
78Once the server is running, you can use the provided MCP tools in your AI assistant or application. Here are some examples of how to use the tools:
79Β 
80### Example 1: Search for papers using keywords
81Β 
82```python
83result = await mcp.use_tool("search_google_scholar_key_words", {
84 "query": "artificial intelligence ethics",
85 "num_results": 5
86})
87print(result)
88```
89Β 
90### Example 2: Perform an advanced search
91Β 
92```python
93result = await mcp.use_tool("search_google_scholar_advanced", {
94 "query": "machine learning",
95 "author": "Hinton",
96 "year_range": [2020, 2023],
97 "num_results": 3
98})
99print(result)
100```
101Β 
102### Example 3: Get author information
103Β 
104```python
105result = await mcp.use_tool("get_author_info", {
106 "author_name": "Geoffrey Hinton"
107})
108print(result)
109```
110Β 
111These examples demonstrate how to use the three main tools provided by the Google Scholar MCP Server. Adjust the parameters as needed for your specific use case.
112Β 
113## Usage with Claude Desktop
114Β 
115Add this configuration to your `claude_desktop_config.json`:
116Β 
117(Mac OS)
118Β 
119```json
120{
121 "mcpServers": {
122 "google-scholar": {
123 "command": "python",
124 "args": ["-m", "google_scholar_mcp_server"]
125 }
126 }
127}
128```
129Β 
130(Windows version):
131Β 
132```json
133{
134 "mcpServers": {
135 "google-scholar": {
136 "command": "C:\\Users\\YOUR\\PATH\\miniconda3\\envs\\mcp_server\\python.exe",
137 "args": [
138 "D:\\code\\YOUR\\PATH\\Google-Scholar-MCP-Server\\google_scholar_server.py"
139 ],
140 "env": {},
141 "disabled": false,
142 "autoApprove": []
143 }
144 }
145}
146```
147Using with Cline
148```json
149{
150 "mcpServers": {
151 "google-scholar": {
152 "command": "bash",
153 "args": [
154 "-c",
155 "source /home/YO

Preview

jackkuo666/google-scholar-mcp-serverjackkuo666/google-scholar-mcp-server

# Google Scholar MCP Server

[![smithery badge](https://smithery.ai/badge/@JackKuo666/google-scholar-mcp-server)](https://smithery.ai/server/@JackKuo666/google-scholar-mcp-server)

πŸ” Enable AI assistants to search and access Google Scholar papers through a simple MCP interface.

The Google Scholar MCP Server provides a bridge between AI assistants and Google Scholar through the Model Context Protocol (MCP). It allows AI models to search

Repojackkuo666/google-scholar-mcp-server
TypeMCP Servers
CategoryResearch
UpdatedMar 2025
Licenseβ€”
First seenJul 27, 2026

Tags

MCP

Related

6 picks
Type
  1. rudra-ravi avatarwikipedia-mcpMCP server for Wikipedia APIMCP ServersMay 2026113k275
  2. assafelovic avatargpt-researcherGPT Researcher is an autonomous agent designed for comprehensive online research on a variety of tasks.MCP ServersJul 202689k29k
  3. prashalruchiranga avatararxiv-mcp-serverMCP server for accesing arXiv APIMCP ServersAug 202576k40
  4. blazickjp avatararxiv-mcp-serverA Model Context Protocol server for searching and analyzing arXiv papersMCP ServersJul 202675k3.0k
  5. biocontext-ai avatarknowledgebase-mcpBioContextAI Knowledgebase MCP server for biomedical agentic AIMCP ServersJan 202666k28
  6. marcopesani avatarmcp-server-serperSerper MCP Server supporting search and webpage scrapingMCP ServersMar 202556k159