Skip to main content
Glama

Google Scholar Remote MCP Server

Server Details

Google Scholar search results, citation counts and citation export formats, as structured JSON.

Ownership verified
Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
HasData/google-scholar-mcp
GitHub Stars
0
Server Listing
Google Scholar MCP Server

TDQS

A4.1/5.0

Scored across 2 tools

Disambiguation5/5

The two tools are clearly separated: one returns organic search results from Google Scholar, while the other returns citation formats and export links for a single already-discovered resultId. There is little chance of selecting the wrong tool for a given step.

Naming Consistency5/5

Both tools follow the same hasdata_google_scholar_<area>_getScholar<Object> pattern. The verb-first 'get' convention is consistent across the server.

Tool Count3/5

At only two tools, the server is at the thin end of the scale and gives agents a minimal Google Scholar interface. The two operations work well together, but the surface feels borderline for a domain with many possible research workflows.

Completeness2/5

The search tool returns cited-by, related-article, and all-versions links, but no tool fetches those associated result sets. There is also no author-profile lookup, leaving agents with dead ends beyond the initial search and citation export step.

Available Tools

2 tools
hasdata_google_scholar_cite_getScholarCitationFormatsgoogle_scholar_cite: GET /AInspect

Get Scholar Citation Formats

Looks up citation formats and export links for a single Google Scholar organic search result, identified by its resultId (as returned in a google/scholar organic result). Returns formatted citation snippets (MLA, APA, Chicago, Harvard, Vancouver) and reference-manager export links (BibTeX, EndNote, RefMan, RefWorks). Use to build citation/bibliography features or complete a research workflow started with google/scholar.

ParametersJSON Schema
NameRequiredDescriptionDefault
qYesThe `resultId` of a Google Scholar organic result, as returned by the google/scholar endpoint.
hlNoThe two-letter language code for the language you want to use for the search. Provide one exact documented value (159 allowed), e.g. `af`, `ak`.

TDQS

A4.3/5.0
Behavior3/5

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

With no annotations provided, the description carries the full burden of behavioral transparency. It discloses that the tool returns citation snippets and export links, implying a read-only operation. However, it does not mention potential errors (e.g., invalid `resultId`), rate limits, or whether the operation is idempotent. This is a minor 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 concise and well-structured: a title line, a clear functional explanation, an output summary, and use-case guidance. No redundant information or fluff is present. Every sentence contributes to the tool's understanding.

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

Completeness5/5

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

Given that no output schema is provided, the description compensates by explicitly listing the expected output types (citation formats and export links). It also explains the input provenance (from google/scholar results) and the intended use cases, covering all essential context an agent needs to invoke the tool correctly.

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?

Schema coverage is 100% with both parameters described. The `q` parameter is explained as the `resultId` from a google/scholar result, providing critical cross-tool context. The `hl` parameter includes guidance on format (two-letter code) and a range (159 allowed) with examples, which exceeds basic type information. These descriptions add meaningful value beyond the schema.

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: looking up citation formats and export links for a single Google Scholar result. It specifies the verb 'Looks up', identifies the resource type (Google Scholar organic result), and differentiates from sibling tools by referencing the `resultId` returned by the google/scholar endpoint. The use cases ('build citation/bibliography features') further clarify its purpose.

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 indicates when to use the tool: after obtaining a `resultId` from a google/scholar organic result, and for citation/bibliography needs. It implicitly contrasts with the search tool that produces the results. However, it does not explicitly mention alternative tools or scenarios where this tool would be inappropriate, but the context is sufficient for a clear use case.

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

hasdata_google_scholar_scholar_getScholarSearchResultsgoogle_scholar_scholar: GET /AInspect

Get Scholar Search Results

Scrapes Google Scholar for a query with author:/source: search helpers, year range (asYlo/asYhi), cited-by and all-versions lookups (cites/cluster), review-article and citation-inclusion filters, language/language-restrict, and start/num pagination. Returns each organic result with title, link, snippet, publication info (authors with profile links), cited-by count and link, related-articles link, and all-versions count and link. Use for academic research, literature review automation, citation tracking, and grounding research agents with scholarly sources.

ParametersJSON Schema
NameRequiredDescriptionDefault
qYesSearch query. Supports Google Scholar search helpers such as `author:` and `source:`.
hlNoThe two-letter language code for the language you want to use for the search. Provide one exact documented value (159 allowed), e.g. `af`, `ak`.
lrNoThe 'lr' parameter specifies the language of the websites to return results from. This parameter filters results based on the language of the web content.
numNoMaximum number of results to return per page.
asRrNoSet to 1 to return review articles only, or 0 (default) to return all articles.
safeNoAdult content filtering option.
asSdtNoSearch type/filter, e.g. `0,5` for the default Articles filter, `4` for case law with court codes, or `0`/`7` for patents.
asVisNoSet to 1 to exclude citations from the results, or 0 (default) to include them.
asYhiNoReturn results published up to and including this year.
asYloNoReturn results published from this year onward.
citesNoUnique article ID to look up articles that cite it, as returned in a result's `citedBy.citesId`.
startNoResult offset for pagination, where 0 is the first result.
filterNoDefines whether to enable or disable the filters for 'Similar Results' and 'Omitted Results'. Set to 1 (default) to enable these filters, or 0 to disable them.
scisbdNoSort results by date instead of relevance: 1 for abstracts only, 2 for everything. Omit for relevance sorting.
clusterNoUnique article ID to look up all indexed versions of that article, as returned in a result's `versions.clusterId`.

TDQS

A4.1/5.0
Behavior3/5

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

The description states it 'scrapes Google Scholar' and 'returns' organic results, implying a read-only operation. However, there are no annotations and the description does not mention potential rate limits, blocking, authentication requirements, or the absence of side effects. It covers basic behavior but leaves some operational expectations implicit.

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

Conciseness4/5

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

The description is a single focused paragraph that front-loads the purpose and then lists key features and use cases. It is not overly verbose, though it somewhat duplicates parameter details already present in the schema. Overall it is concise and well-organized.

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?

The description compensates for the absence of an output schema by enumerating the result fields and linking them to parameter behavior. It includes enough context for an agent to understand expected outputs and typical applications. It lacks only explicit error/rate-limit handling, which is minor for a search GET endpoint.

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?

While the schema already describes all parameters (100% coverage), the prose description adds valuable context, such as examples for `asSdt` (e.g., '0,5' for Articles), the meaning of `scisbd` for date sorting, and how `cites`/`cluster` map to returned result fields. This goes beyond simple parameter names.

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 identifies the tool as scraping Google Scholar for search results, listing the key query capabilities (author/source helpers, year range, citation lookups) and the exact output fields (title, link, snippet, cited-by, versions). This differentiates it from sibling tools like the citation formatter.

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 explicitly states recommended use cases ('academic research, literature review automation, citation tracking, and grounding research agents with scholarly sources'). It does not explicitly name alternative tools or provide 'when not to use' guidance, but the use cases are sufficiently specific to guide selection.

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. 2 tool updates
    • First observedhasdata_google_scholar_cite_getScholarCitationFormats
    • First observedhasdata_google_scholar_scholar_getScholarSearchResults

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    C
    maintenance
    Enables searching Google Scholar for academic papers, citations, and author profiles, returning structured JSON results including titles, authors, citation counts, abstracts, and PDF links.
    1
    MIT
  • A
    license
    B
    quality
    D
    maintenance
    Retrieve citation data effortlessly from CiteAs and Google Scholar. Get BibTeX-formatted citations for your resources with just a few commands. Enhance your research workflow by integrating citation retrieval directly into your applications.
    2
    14
    MIT
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.