Skip to main content
Glama
dihannahdi

google-scholar-mcp

by dihannahdi

Google Scholar MCP Server

npm version MCP TypeScript License: MIT Node.js

The most comprehensive Google Scholar MCP server for AI assistants

InstallationQuick StartToolsAPI ReferenceContributing


A powerful Model Context Protocol (MCP) server that connects AI assistants like Claude to Google Scholar. Search academic publications, find researchers, analyze citations, download papers, and perform advanced research workflows.

🌟 Features

Tools (11 Total)

Tool

Description

search_publications

Search for academic papers by topic, author, or date range

search_author

Find researchers by name, field, or institution

get_author_profile

Get detailed author info including h-index, publications, and coauthors

get_citations

Find papers that cite a specific publication

generate_bibtex

Generate BibTeX entries for citations

get_related_articles

Find related articles for a publication

get_all_versions

Get all available versions of a paper

download_paper

Download and store papers locally for offline access

list_papers

List all locally stored papers

read_paper

Read content of a stored paper

advanced_search

Advanced search with language, patent, and date filters

Prompts (6 Total)

Prompt

Description

literature_review

Structured approach to conducting literature reviews

find_expert

Find leading researchers in a specific field

citation_analysis

Analyze the citation impact of a publication

deep_paper_analysis

Comprehensive multi-step paper analysis workflow

research_synthesis

Synthesize research across multiple papers

methodology_comparison

Compare methodologies across research papers

Key Advantages

  • 11 Powerful Tools: Search, citations, related articles, versions, downloads & more

  • Advanced Search: Filter by language, patents, review articles, and more

  • Local Paper Storage: Download and cache papers for offline access

  • Intelligent Caching: Reduce redundant requests with TTL-based caching

  • Rich Metadata: Abstracts, citation counts, h-index, coauthors, and more

  • Rate Limiting: Built-in protection against Google Scholar blocking

  • Error Handling: Graceful handling of rate limits and CAPTCHAs

  • BibTeX Support: Generate proper academic citations

  • Advanced Prompts: Pre-built workflows for deep paper analysis and research synthesis

Related MCP server: semantic-scholar-mcp

📦 Installation

npx -y @smithery/cli install @dihannahdi/google-scholar-mcp --client claude

Via npm

npm install -g @dihannahdi/google-scholar-mcp

From Source

git clone https://github.com/dihannahdi/google-scholar-mcp.git
cd google-scholar-mcp
npm install
npm run build

🚀 Quick Start

Running the Server

# If installed globally
google-scholar-mcp

# From source
npm start

# Development mode
npm run dev

Configuration for Claude Desktop

Add to your claude_desktop_config.json:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "google-scholar": {
      "command": "node",
      "args": ["/path/to/google-scholar-mcp/dist/index.js"],
      "env": {
        "SCHOLAR_STORAGE_PATH": "~/.google-scholar-mcp/papers",
        "SCHOLAR_RATE_LIMIT_MS": "3000",
        "SCHOLAR_CACHE_ENABLED": "true",
        "SCHOLAR_CACHE_TTL_MS": "3600000",
        "SERPAPI_KEY": "your_serpapi_key_here",
        "SCHOLAR_USE_SERPAPI_FALLBACK": "true"
      }
    }
  }
}

Or using npx:

{
  "mcpServers": {
    "google-scholar": {
      "command": "npx",
      "args": ["-y", "@dihannahdi/google-scholar-mcp"]
    }
  }
}

Environment Variables

Variable

Description

Default

SCHOLAR_STORAGE_PATH

Path to store downloaded papers

~/.google-scholar-mcp/papers

SCHOLAR_RATE_LIMIT_MS

Rate limit between requests (ms)

3000

SCHOLAR_CACHE_ENABLED

Enable response caching

true

SCHOLAR_CACHE_TTL_MS

Cache time-to-live (ms)

3600000 (1 hour)

SCHOLAR_PROXY_URL

Optional proxy URL

-

SERPAPI_KEY

SerpAPI key for reliable fallback (get free key)

-

SCHOLAR_USE_SERPAPI_FALLBACK

Enable automatic SerpAPI fallback when blocked

false

SCHOLAR_ROTATE_USER_AGENT

Rotate user agents to avoid detection

true

SCHOLAR_ENABLE_JITTER

Add random delays between requests

true

SCHOLAR_JITTER_MAX_MS

Maximum jitter delay in milliseconds

2000

Google Scholar aggressively blocks automated access. To ensure 100% uptime, we recommend using SerpAPI as a fallback:

  1. Get a free API key at serpapi.com (100 free searches/month)

  2. Set environment variables:

    export SERPAPI_KEY="your_serpapi_key"
    export SCHOLAR_USE_SERPAPI_FALLBACK="true"

How it works:

  • The server first attempts direct scraping (free, but may be blocked)

  • If blocked, it automatically falls back to SerpAPI (reliable, paid)

  • Results are normalized to the same format regardless of source

Benefits of SerpAPI:

  • ✅ 100% uptime guarantee

  • ✅ No CAPTCHA or blocking issues

  • ✅ Handles all anti-bot measures

  • ✅ Rich structured data

  • ✅ Author profiles, citations, related articles

📖 Usage Examples

Search for Publications

Search for recent machine learning papers about transformers

Tool: search_publications
Arguments:
  query: "transformer neural network"
  yearStart: 2020
  numResults: 10
  sortBy: "relevance"

Find an Author

Find researchers working on quantum computing at MIT

Tool: search_author
Arguments:
  query: "quantum computing"
  organization: "MIT"
  numResults: 5

Get Author Profile

Get detailed profile for Geoffrey Hinton

Tool: get_author_profile
Arguments:
  scholarId: "JicYPdAAAAAJ"

Get Citations

Find papers citing "Attention Is All You Need"

Tool: get_citations
Arguments:
  clusterId: "4054916225996727837"
  numResults: 10
  sortBy: "date"

Generate BibTeX

Create BibTeX for a paper

Tool: generate_bibtex
Arguments:
  title: "Attention Is All You Need"
  authors: ["Ashish Vaswani", "Noam Shazeer", "Niki Parmar"]
  year: 2017
  venue: "Advances in Neural Information Processing Systems"

🔧 API Reference

search_publications

Search Google Scholar for academic publications.

Parameters:

Parameter

Type

Required

Default

Description

query

string

Yes

-

Search query

author

string

No

-

Filter by author name

yearStart

number

No

-

Start year for filter

yearEnd

number

No

-

End year for filter

numResults

number

No

10

Number of results (1-20)

sortBy

string

No

"relevance"

"relevance" or "date"

Returns:

  • List of publications with title, authors, abstract, venue, year, citation count, URLs

search_author

Search for academic researchers.

Parameters:

Parameter

Type

Required

Default

Description

query

string

Yes

-

Author name or keywords

organization

string

No

-

Filter by institution

numResults

number

No

10

Number of results (1-20)

Returns:

  • List of author profiles with name, affiliation, interests, citation count

get_author_profile

Get detailed author information.

Parameters:

Parameter

Type

Required

Description

scholarId

string

Yes

Google Scholar author ID

Returns:

  • Complete profile with publications, h-index, i10-index, coauthors, citation history

get_citations

Get papers that cite a specific publication.

Parameters:

Parameter

Type

Required

Default

Description

clusterId

string

Yes

-

Google Scholar cluster ID

numResults

number

No

10

Number of results (1-20)

sortBy

string

No

"relevance"

"relevance" or "date"

Returns:

  • List of citing publications with details

generate_bibtex

Generate a BibTeX citation entry.

Parameters:

Parameter

Type

Required

Description

title

string

Yes

Publication title

authors

string[]

Yes

List of author names

year

number

No

Publication year

venue

string

No

Journal/conference name

url

string

No

Publication URL

Returns:

  • Formatted BibTeX entry

Find related articles for a given publication.

Parameters:

Parameter

Type

Required

Default

Description

clusterId

string

Yes

-

Google Scholar cluster ID

numResults

number

No

10

Number of results (1-20)

Returns:

  • List of related publications with metadata

get_all_versions

Get all available versions of a paper.

Parameters:

Parameter

Type

Required

Default

Description

clusterId

string

Yes

-

Google Scholar cluster ID

numResults

number

No

10

Number of results (1-20)

Returns:

  • List of all versions (preprint, published, etc.)

download_paper

Download and store a paper locally.

Parameters:

Parameter

Type

Required

Description

url

string

Yes

URL to the paper (PDF, arXiv, etc.)

filename

string

Yes

Name for the saved file

metadata

object

No

Optional metadata (title, authors, year)

Returns:

  • Path to stored file and confirmation

list_papers

List all locally stored papers.

Parameters:

Parameter

Type

Required

Description

pattern

string

No

Optional filter pattern

Returns:

  • List of stored papers with metadata

read_paper

Read the content of a stored paper.

Parameters:

Parameter

Type

Required

Description

filename

string

Yes

Name of the stored file

Returns:

  • Paper content (text format)

Advanced search with additional filters.

Parameters:

Parameter

Type

Required

Default

Description

query

string

Yes

-

Search query

exactPhrase

string

No

-

Exact phrase to match

withoutWords

string

No

-

Words to exclude

author

string

No

-

Filter by author

source

string

No

-

Filter by source/journal

yearStart

number

No

-

Start year filter

yearEnd

number

No

-

End year filter

language

string

No

"en"

Language code

includePatents

boolean

No

true

Include patents in results

includeCitations

boolean

No

true

Include citations

numResults

number

No

10

Number of results

Returns:

  • List of publications matching criteria

🛠️ Development

Project Structure

google-scholar-mcp/
├── src/
│   ├── index.ts          # MCP server entry point
│   ├── config/
│   │   └── index.ts      # Environment configuration
│   ├── types/
│   │   └── index.ts      # TypeScript type definitions
│   ├── tools/
│   │   ├── definitions.ts # Tool schemas (11 tools)
│   │   ├── handlers.ts    # Tool implementation
│   │   └── index.ts
│   ├── scraper/
│   │   ├── scholar.ts    # Google Scholar scraper
│   │   └── index.ts
│   └── utils/
│       ├── helpers.ts    # URL builders, rate limiting
│       ├── cache.ts      # In-memory caching
│       ├── storage.ts    # Local paper storage
│       └── index.ts
├── dist/                  # Compiled JavaScript
├── package.json
├── tsconfig.json
└── README.md

Building

npm run build

Testing

# Run MCP Inspector for debugging
npx @modelcontextprotocol/inspector node dist/index.js

⚠️ Limitations

  1. Rate Limiting: Google Scholar may rate-limit or block requests. The server includes delays and retries, but heavy usage may trigger blocks.

  2. CAPTCHA: Excessive requests may trigger CAPTCHA challenges. If this happens, wait a few minutes before retrying.

  3. No Official API: This server scrapes Google Scholar's web interface, which may break if Google changes their HTML structure.

  4. Results Limited: Maximum 20 results per request to stay within reasonable limits.

🤝 Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

  1. Fork the repository

  2. Create your feature branch (git checkout -b feature/AmazingFeature)

  3. Commit your changes (git commit -m 'Add some AmazingFeature')

  4. Push to the branch (git push origin feature/AmazingFeature)

  5. Open a Pull Request

📄 License

This project is licensed under the MIT License - see the LICENSE file for details.

🙏 Acknowledgments

📬 Support

For issues and questions:


Made with ❤️ for the research community

Available Tools

11 tools
download_paperA

Download and store a paper locally for offline access. Saves paper metadata and PDF if available.

ParametersJSON Schema
NameRequiredDescriptionDefault
yearNoPublication year
titleYesPaper title
venueNoJournal or conference name
pdfUrlNoDirect URL to PDF
authorsYesList of author names
clusterIdNoGoogle Scholar cluster ID

TDQS

A3.5/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description must carry the full burden. It mentions saving metadata and PDF if available, but fails to disclose important details like storage location, permissions needed, whether it overwrites existing files, or the behavior when PDF is missing. This is a significant gap for a mutation tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is extremely concise, consisting of two short sentences. It front-loads the purpose and adds a supporting detail about what is saved. Every word earns its place with no redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with 6 parameters and no output schema, the description is somewhat complete but lacks explanation of what happens when PDF URL is not provided (since it's not required) and how the paper is located. More context on the download behavior would improve completeness.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has 100% description coverage for all 6 parameters. The description adds no additional semantic information beyond what the schema already provides, so the baseline score of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('download and store'), the resource ('paper'), and the outcome ('for offline access'). It distinguishes this tool from siblings like 'read_paper' or 'list_papers' by emphasizing local storage and PDF availability.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage when offline access is needed, but does not explicitly state when not to use it or provide alternatives such as 'read_paper' for online viewing. The context is clear but lacks exclusions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

generate_bibtexA

Generate a BibTeX citation entry for a publication. Useful for creating properly formatted citations for LaTeX documents.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlNoPublication URL
yearNoPublication year
titleYesPublication title
venueNoJournal or conference name
authorsYesList of author names

TDQS

A3.6/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden of behavioral disclosure. It does not mention side effects, authentication requirements, error handling, or how invalid inputs are treated. For a generation tool, this is a significant gap.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is extremely concise with two sentences. The first sentence states the purpose and verb, and the second provides context. Every sentence earns its place with no wasted words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the lack of an output schema, the description should explain the return value, such as the format of the BibTeX string or citation key generation. It also does not mention if the tool supports all publication types (e.g., article, book). This leaves the agent uncertain about what to expect.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the baseline is 3. The description does not add any additional meaning to the parameters, such as the expected format for authors (e.g., 'First Last' vs 'Last, First') or handling of special characters. It merely restates the purpose.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('Generate a BibTeX citation entry') and the resource ('a publication'), with additional context about its use for LaTeX documents. It distinguishes itself from sibling tools like search_publications or get_citations, which serve different purposes.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides clear context: the tool is useful for generating properly formatted citations for LaTeX documents. However, it lacks explicit guidance on when not to use it or alternatives, such as if the user needs citations in other formats.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_all_versionsA

Get all versions/variants of a publication. Find preprints, published versions, and open access copies.

ParametersJSON Schema
NameRequiredDescriptionDefault
clusterIdYesGoogle Scholar cluster ID of the publication

TDQS

A3.8/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the burden. It mentions the type of results (preprints, published, open access) but does not disclose potential rate limits, authentication requirements, or any side effects. The read nature is implied but not explicit.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences, no extraneous words. The purpose is front-loaded in the first sentence, and the second adds specific examples. Highly concise and efficient.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple retrieval tool with one parameter and no output schema, the description covers the main functionality well. However, more detail about the output format or potential limitations (e.g., pagination) would improve completeness.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% with a single parameter described as 'Google Scholar cluster ID of the publication.' The description adds no additional meaning beyond the schema, which already sufficiently documents the parameter. Baseline 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool retrieves 'all versions/variants of a publication' and lists examples like preprints, published versions, and open access copies. It distinguishes from siblings like get_citations or search_publications by focusing on versions.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage when you need to find different versions of a publication, but does not explicitly state when to avoid this tool or suggest alternatives like get_citations for citation data.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_author_profileA

Get detailed information about a specific Google Scholar author profile, including publications, citation metrics (h-index, i10-index), and coauthors.

ParametersJSON Schema
NameRequiredDescriptionDefault
scholarIdYesGoogle Scholar author ID (e.g., "JicYPdAAAAAJ")

TDQS

A4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden. It states what data is returned but does not disclose behavior such as read-only nature, rate limits, authentication requirements, or error handling for invalid IDs. Moderate transparency.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single sentence that efficiently conveys the tool's purpose and key outputs with no redundant information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool has only one required parameter and no output schema, the description adequately covers the returned data (publications, metrics, coauthors). It is complete for a simple retrieval tool, though it could mention pagination or filtering if applicable.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema already describes the scholarId parameter with 100% coverage. The description adds value by providing an example ID format, enhancing understanding beyond the schema alone.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb 'Get' and the resource 'Google Scholar author profile', listing specific outputs like publications, citation metrics (h-index, i10-index), and coauthors. It effectively distinguishes from sibling tools like search_author and list_papers.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage for retrieving detailed author information by ID but lacks explicit guidance on when to use this tool over alternatives like search_author for finding IDs or list_papers for paper lists. No exclusions or prerequisites are mentioned.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_citationsA

Get papers that cite a specific publication. Requires the cluster ID from the publication's "Cited by" link.

ParametersJSON Schema
NameRequiredDescriptionDefault
sortByNoSort by relevance or daterelevance
clusterIdYesGoogle Scholar cluster ID
numResultsNoNumber of citing papers (default: 10, max: 20)

TDQS

A3.7/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description only mentions that a cluster ID is required and implies a read operation. It does not disclose any potential side effects, rate limits, or other behavioral traits beyond the basic prerequisite. The absence of annotations means the description carries the burden, but it provides minimal transparency.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is extremely concise: two sentences that directly state the purpose and a key prerequisite. No unnecessary words, and the essential information is front-loaded.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

While the description covers the basic purpose and a key prerequisite, it does not describe the output or return format. Without an output schema, the agent may need more context about what the response contains (e.g., list of paper titles, authors). Given the low complexity and high schema coverage of parameters, the description is moderately complete but lacks output details.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema already describes all three parameters with 100% coverage. The description adds only that the cluster ID comes from the publication's 'Cited by' link, which is a minor semantic addition beyond the schema. Therefore, a score of 3 (baseline for high schema coverage) is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's functionality: getting papers that cite a specific publication. It uses a specific verb ('Get') and resource ('papers that cite a specific publication'), and it distinguishes from siblings like 'search_publications' which searches broadly.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description includes a clear prerequisite (requires cluster ID from 'Cited by' link), but does not explicitly state when to use this tool versus alternatives like 'search_publications' or 'get_related_articles'. The mention of the required input provides some guidance, but not full usage context.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_papersA

List all locally downloaded papers in your research library.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A3.9/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description must fully disclose behavior. It states a read-only listing operation, but no details on ordering, pagination, or performance implications. It is adequate but minimal.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

A single sentence of 10 words with no wasted text. Front-loaded and efficient.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given zero parameters and no output schema, the description is mostly complete but lacks information about what fields are returned (e.g., titles, metadata). This is a minor gap for a simple listing tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

There are no parameters, so schema coverage is 100% trivially. The description adds value by specifying the scope 'locally downloaded' which clarifies the data source beyond the empty schema. Baseline for 0 params is 4.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description 'List all locally downloaded papers in your research library' clearly states the action (list), resource (locally downloaded papers), and scope (all, your library). It effectively distinguishes from sibling tools like advanced_search and download_paper.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No explicit guidance on when to use this tool versus alternatives. The purpose is implied, but there is no mention of when not to use it or any comparison with siblings.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

read_paperB

Read metadata and access a locally stored paper.

ParametersJSON Schema
NameRequiredDescriptionDefault
paperIdYesLocal paper ID (from list_papers)

TDQS

B3.3/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description must fully disclose behavior. It does not mention whether the tool is read-only, what exactly is returned (only metadata or the full paper), or any constraints like requiring the paper to be locally stored.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, concise sentence that immediately conveys the tool's purpose. No unnecessary words or redundant information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's simplicity (one required string parameter, no output schema, no annotations), the description is minimally complete. However, it would benefit from clarifying what 'access' means (e.g., reading full text vs. metadata) and specifying the output format.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% for the single parameter paperId, and the schema already describes it as 'Local paper ID (from list_papers).' The description adds no further meaning, so a baseline score of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's function: 'Read metadata and access a locally stored paper.' It uses a specific verb (read) and resource (metadata of a locally stored paper), distinguishing it from siblings that handle downloads, citations, or searches.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives like download_paper or get_related_articles. There is no mention of prerequisites or context for optimal use.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

search_authorA

Search for academic researchers and their Google Scholar profiles. Find researchers by name, field, or institution.

ParametersJSON Schema
NameRequiredDescriptionDefault
queryYesAuthor name or research topic keywords
numResultsNoNumber of results (default: 10, max: 20)
organizationNoFilter by institution/organization

TDQS

A3.5/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations provided; description only states search capability without disclosing read-only nature, rate limits, pagination, or result format. Minimal behavioral context.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two succinct sentences with no redundant information. Efficient.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Adequate for a simple search tool with fully described parameters, but lacks hints about output results and no guidance on sibling tool selection.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%; description adds no new meaning beyond schema defaults and filters. Baseline 3.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Clearly states it searches for academic researchers and Google Scholar profiles. Distinct from siblings like 'get_author_profile' or 'search_publications'.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Implies usage for searching by name, field, or institution, but does not differentiate from 'get_author_profile' for known authors or provide when-not cases.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

search_publicationsB

Search Google Scholar for academic publications, papers, and research articles. Use this to find papers on topics, by authors, or within date ranges.

ParametersJSON Schema
NameRequiredDescriptionDefault
queryYesSearch query for finding publications
authorNoFilter results by author name
sortByNoSort by relevance or daterelevance
yearEndNoFilter publications up to this year
yearStartNoFilter publications from this year onwards
numResultsNoNumber of results (default: 10, max: 20)

TDQS

B3.3/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden. It reveals the tool is a read operation (search) but does not disclose any other behaviors such as rate limits, authentication requirements, or result format.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description consists of two concise sentences. The first front-loads the core purpose, and the second adds usage context. No fluff or redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description tells when to use the tool but omits information about the return structure, pagination, or result format. Given the 6 parameters and no output schema, the description is adequate but not complete for an agent to fully understand usage without further inspection of the schema.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the description's contribution is minimal. The description reinforces the purpose of query, author, and date parameters but adds little new meaning beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states it searches Google Scholar for academic publications, papers, and research articles. The verb 'search' and resource 'Google Scholar' are specific, but it does not explicitly distinguish from the sibling 'advanced_search' tool.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It says 'Use this to find papers on topics, by authors, or within date ranges,' which provides context for usage. However, it does not mention when not to use it or mention alternatives like 'advanced_search'.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 11 tool updatesv1.2.0
    • First observedadvanced_search
    • First observeddownload_paper
    • First observedgenerate_bibtex
    • First observedget_all_versions
    • First observedget_author_profile
    • First observedget_citations
    • First observedget_related_articles
    • First observedlist_papers
    • First observedread_paper
    • First observedsearch_author
    • First observedsearch_publications

TDQS

A3.7/5.0

Scored across 11 tools

Disambiguation5/5

Each tool serves a distinct purpose: basic and advanced search, author discovery, citation tracking, version retrieval, local storage management, and citation generation. Even closely related tools like search_publications and advanced_search are clearly differentiated by parameter scope.

Naming Consistency4/5

Most tool names follow a consistent verb_noun pattern (e.g., download_paper, search_author). The exception is advanced_search, which inverts the order (adjective+noun) rather than verb+noun. Overall, the pattern is predictable.

Tool Count5/5

With 11 tools, the surface is well-scoped for a Google Scholar integration. It covers searching, author profiles, citation and related article discovery, local library management, and citation generation without being overwhelming.

Completeness4/5

The tool set covers the core academic research workflow comprehensively: search, retrieve, store, and cite. Minor gaps exist, such as the absence of bulk export or collaboration features, but these do not hinder basic usage.

Maintenance

ActivityInactive
ResponsivenessNo issues

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    D
    maintenance
    Enables academic research through Google Scholar by searching for papers, finding author publications, discovering recent research, and identifying highly cited works through web scraping with natural language queries.
    MIT
  • A
    license
    Not graded
    quality
    D
    maintenance
    Enables searching and retrieving academic paper metadata from Semantic Scholar, including paper details, citations, and author information.
    21
    MIT