Research Mcp
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.
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.
Tool Definition Quality
Average 3.4/5 across 4 of 4 tools scored. Lowest: 2.4/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.
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.
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.
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 toolsget_paperAInspect
Get full metadata for one paper by OpenAlex ID (e.g. W2741809807) or DOI. Returns full paper details incl. abstract, references count, concepts.
| Name | Required | Description | Default |
|---|---|---|---|
| work_id | Yes |
Tool Definition Quality
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
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.
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.
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.
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.
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.
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: [...]}
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| author | Yes |
Tool Definition Quality
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.
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.
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.
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.
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.
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}]}
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| query | Yes |
Tool Definition Quality
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.
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.
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.
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.
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.
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.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!