Skip to main content
Glama

Server Details

MCP server for Research

Status
Unhealthy
Last Tested
Transport
Streamable HTTP
URL

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsB

Average 3.4/5 across 4 of 4 tools scored. Lowest: 2.4/5.

Server CoherenceA
Disambiguation5/5

Each tool has a distinct purpose: health_check is a standalone health endpoint, get_paper retrieves a single paper by ID/DOI, list_papers_by_author queries by author name, and search_papers searches by keywords. No overlap in functionality.

Naming Consistency5/5

All tool names follow a consistent snake_case verb_noun pattern ('get_paper', 'health_check', 'list_papers_by_author', 'search_papers'), making it easy to infer tool behavior from the name.

Tool Count5/5

With 4 tools, the server is well-scoped for a research paper search service. Each tool covers a necessary operation (health check, single paper retrieval, author-based and keyword-based search) without being bloated or insufficient.

Completeness4/5

The tool surface covers the core needs: health check, single paper lookup, and two search modes (by author and by keyword). Minor gaps exist, such as the absence of search by concept or date range, but the main workflows are supported.

Available Tools

4 tools
get_paperAInspect

Get full metadata for one paper by OpenAlex ID (e.g. W2741809807) or DOI. Returns full paper details incl. abstract, references count, concepts.

ParametersJSON Schema
NameRequiredDescriptionDefault
work_idYes
Behavior3/5

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

No annotations provided, so description carries burden. It discloses return fields but omits details like error handling, rate limits, or side effects. Adequate but could be more thorough.

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 concise sentences with no wasted words, front-loading the action and outcome.

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 simple tool with no output schema, description adequately explains input and output. Minor gap: no mention of behavior on missing ID.

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 0%, but description adds meaning by specifying accepted input formats (OpenAlex ID or DOI) and examples, which compensates significantly.

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 uses a specific verb 'Get' and resource 'paper by OpenAlex ID or DOI', clearly distinguishing it from sibling tools like search_papers and list_papers_by_author.

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 use for a single paper lookup but lacks explicit guidance on when not to use or comparison with alternatives.

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

health_checkCInspect

Health check. FREE.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior2/5

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

With no annotations, the description must disclose behavior. It only mentions 'FREE', implying no cost, but doesn't confirm read-only nature, side effects, or return format. For a health check, critical details like latency or error responses are omitted.

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

Conciseness3/5

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

The description is a single short sentence, which is concise but lacks necessary detail. It earns its place but does not fully convey the tool's function.

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 no output schema, the description should explain the return value or effect. It merely states 'Health check' without clarifying success indicators, error states, or expected behavior. The tool is simple but incomplete for an agent to confidently invoke.

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 the description has no burden to explain them. Baseline of 4 is appropriate since schema coverage is 100% with an empty schema.

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

Purpose2/5

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

The description 'Health check. FREE.' vaguely indicates the tool is for checking health status, but it doesn't specify what action it performs or what response to expect. It is not a tautology but is too brief to clearly distinguish its purpose from a simple ping.

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?

No guidelines are provided on when to use this tool versus its siblings (get_paper, list_papers_by_author, search_papers). The context suggests it's different, but the description lacks any usage context or disclaimers.

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

list_papers_by_authorBInspect

List recent papers by an author name (OpenAlex). FREE discovery. Returns {author, papers: [...]}

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo
authorYes
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 the return format and that it's free, but does not disclose behavioral traits like pagination, rate limiting, what 'recent' means (time frame), or required authentication. Adequate but incomplete.

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 short sentences with no wasted words. Front-loads the core action and provides output format succinctly.

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 simple tool with 2 parameters and no output schema, the description covers the basics: action, resource, filter, and return shape. However, it omits details like the range of limit, pagination, and definition of 'recent', leaving some gaps for the agent.

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

Parameters2/5

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

Schema description coverage is 0%, so the description must explain parameters. It mentions 'author name' implying the author parameter is a name but does not detail format (e.g., full name vs. last name). The limit parameter is not addressed at all.

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 ('List recent papers'), the resource ('papers'), and the filter ('by an author name'), with an explicit source ('OpenAlex'). This distinguishes it from siblings like 'search_papers' (which likely has broader search) and 'get_paper' (single paper).

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?

No guidance on when to use this tool vs alternatives. It mentions 'FREE discovery' but does not explain when to use search_papers instead or any prerequisites or limitations.

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

search_papersAInspect

Search 250M+ academic papers by keyword (OpenAlex). FREE discovery. Returns {papers: [{id, title, year, authors, cited_by_count, doi, venue}]}

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo
queryYes
Behavior3/5

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

With no annotations, the description carries full burden. It states the tool is free and returns a specific structure, suggesting a read-only discovery operation. However, it does not disclose potential side effects, rate limits, or pagination behavior. The return format is helpful but incomplete for full 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 short sentences plus a return type example), with no wasted words. It front-loads the key purpose and output format, making it easy for an agent to parse quickly.

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's simplicity (2 parameters, no output schema, no annotations), the description covers the core purpose, input semantics, and return format fairly well. However, it could be more complete by explaining the 'limit' parameter and explicitly contrasting with sibling tools.

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 0%, so the description must add meaning. It explains the 'query' parameter via 'by keyword' but does not mention the 'limit' parameter or its default. The output structure description partially compensates, but limit semantics are missing.

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 'Search 250M+ academic papers by keyword', specifying the verb (search), resource (academic papers), and scope (keyword-based, 250M+ papers). It effectively distinguishes from siblings like get_paper (single paper retrieval) and list_papers_by_author (author-filtered search).

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 keyword-based discovery ('FREE discovery'), but does not explicitly state when to use it over alternatives like get_paper or list_papers_by_author. No when-not or alternative naming is provided, making it adequate but not strong.

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

Discussions

No comments yet. Be the first to start the discussion!

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources