Skip to main content
Glama

Server Details

Access the OpenAlex academic research catalog - 270M+ publications via MCP. STDIO & HTTP.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
cyanheads/openalex-mcp-server
GitHub Stars
0

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 Definition Quality

Score is being calculated. Check back soon.

Available Tools

3 tools
openalex_resolve_nameOpenalex Resolve NameA
Read-onlyIdempotent
Inspect

Resolve a name or partial name to an OpenAlex ID. Returns up to 10 matches with disambiguation hints. ALWAYS use this before filtering by entity — names are ambiguous, IDs are not. Also accepts DOIs directly for quick lookup. Response time ~200ms.

ParametersJSON Schema
NameRequiredDescriptionDefault
queryYesName or partial name to resolve. Also accepts DOIs for quick lookup.
filtersNoNarrow autocomplete results with filters. Example: restrict to a specific country or publication year range.
entity_typeNoEntity type to search. Omit for cross-entity search (useful when entity type is unknown).

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultsYesAutocomplete matches, up to 10.
Behavior4/5

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

While annotations declare readOnly, openWorld, and idempotent traits, the description adds valuable operational context: result cardinality ('up to 10 matches'), specific feature ('disambiguation hints'), and performance characteristics ('Response time ~200ms'). It does not contradict annotations.

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?

Four sentences with zero waste: purpose declaration, workflow rule, input alternative, and performance metric. Information is front-loaded and every clause earns its place.

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 the presence of an output schema and comprehensive annotations, the description appropriately focuses on workflow integration and behavioral specifics rather than redundantly detailing return structures. It adequately covers the 3-parameter schema with 100% coverage.

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?

With 100% schema coverage, the baseline is 3. The description adds workflow context that helps interpret the filters and entity_type parameters ('before filtering by entity'), and emphasizes the DOI capability for the query parameter, providing usage semantics beyond raw schema definitions.

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 specific action (resolve name to OpenAlex ID) and resource, distinguishing it from general search siblings. It further clarifies the scope by noting it returns matches with disambiguation hints, precisely defining the tool's resolution function.

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

Usage Guidelines5/5

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

Provides explicit workflow guidance with 'ALWAYS use this before filtering by entity — names are ambiguous, IDs are not,' clearly indicating when to use this tool versus alternatives. Also notes the DOI input shortcut, offering concrete usage context.

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

openalex_search_entitiesOpenalex Search EntitiesA
Read-onlyIdempotent
Inspect

Search, filter, sort, or retrieve by ID. Covers all OpenAlex entity types (works, authors, sources, institutions, topics, keywords, publishers, funders). Pass id to retrieve a single entity (free, unlimited API calls). Otherwise, use query and/or filters for discovery. Supports keyword search with boolean operators, exact phrase matching, and AI semantic search. Use openalex_resolve_name to resolve names to IDs before filtering. Searches return a curated set of fields by default; pass select to override with specific fields.

ParametersJSON Schema
NameRequiredDescriptionDefault
idNoRetrieve a single entity by ID. Supports: OpenAlex ID ("W2741809807"), DOI ("10.1038/nature12373"), ORCID ("0000-0002-1825-0097"), ROR ("https://ror.org/00hx57361"), PMID ("12345678"), PMCID ("PMC1234567"), ISSN ("1234-5678"). When provided, other search/filter/sort params are ignored. Use openalex_resolve_name to find the ID if unknown.
sortNoSort field. Prefix with "-" for descending. Common: "cited_by_count", "-publication_date", "relevance_score" (default when query present).
queryNoText search query. Supports boolean operators (AND, OR, NOT), quoted phrases ("exact match"), wildcards (machin*), fuzzy matching (machin~1), and proximity ("climate change"~5). Omit for filter-only queries.
cursorNoPagination cursor from a previous response. Pass to get the next page.
selectNoFields to return. Top-level fields only. Searches apply sensible defaults per entity type; pass this to override. Single-entity lookups (by `id`) return the full record unless `select` is specified. Example: ["id", "doi", "display_name", "publication_year", "cited_by_count", "primary_topic"].
filtersNoFilter criteria as field:value pairs. AND across fields (multiple keys). OR within field: pipe-separate ("us|gb"). NOT: prefix "!" ("!us"). Range: "2020-2024". Comparison: ">100", "<50". AND within same field: "+"-separate. Use OpenAlex IDs (not names) for entity filters — resolve names first.
per_pageNoResults per page (1-100). Default 25.
entity_typeYesType of scholarly entity to search.
search_modeNoSearch strategy. "keyword": stemmed full-text (default). "exact": no stemming, matches individual words (use quoted phrases for multi-word exact match). "semantic": AI embedding similarity (max 50 results, 1 req/sec).keyword

Output Schema

ParametersJSON Schema
NameRequiredDescription
metaYesResult metadata including pagination.
resultsYesEntity objects. Additional fields depend on entity_type and select.
Behavior4/5

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

Adds valuable operational context beyond annotations: notes ID retrieval is 'free, unlimited API calls' (rate limit info), and explains that searches return 'curated set of fields by default' (response behavior). Does not mention the semantic search rate limits (max 50 results, 1 req/sec), but these are documented in the schema. No contradictions with readOnlyHint/openWorldHint annotations.

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?

Seven sentences that are front-loaded with core capability, cover entity scope, distinguish ID vs search modes, detail search syntax capabilities, reference the sibling tool, and explain field selection. Every sentence earns its place with no redundancy or filler.

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 the rich schema (100% coverage, output schema present) and tool complexity (9 params, nested filters object), the description provides sufficient high-level context: entity type coverage, retrieval modes, cross-tool workflow requirements, and default field behavior. Does not need to detail return values since output schema exists.

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?

With 100% schema description coverage, the schema fully documents all 9 parameters. The description references parameters (`id`, `query`, `filters`, `select`) but does not add semantic meaning beyond what's in the schema descriptions. Baseline score of 3 is appropriate for high-coverage schemas.

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 opens with specific verbs (Search, filter, sort, retrieve) and explicitly lists all eight entity types covered. It clearly distinguishes from sibling openalex_resolve_name by stating 'Use openalex_resolve_name to resolve names to IDs before filtering,' establishing this tool handles IDs directly while the sibling handles name resolution.

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

Usage Guidelines5/5

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

Provides explicit branching logic: 'Pass `id` to retrieve a single entity... Otherwise, use `query` and/or `filters` for discovery.' Names the sibling tool explicitly for the prerequisite step of resolving names to IDs, giving clear guidance on tool selection sequence.

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.