Skip to main content
Glama
ckgerteis

openalex-mcp

by ckgerteis

oa_search_authors

Read-onlyIdempotent

Search OpenAlex for authors by name. Retrieve each author's affiliations, work and citation counts, and h-index, with optional filtering by institution.

Instructions

Search OpenAlex for authors by name. Returns the unified envelope; each item is an author record (record_type author) with affiliations, work and citation counts, and h-index in extra.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
paramsYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.1.0

TDQS

A3.9/5.0
Behavior4/5

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

Annotations already mark the operation as read-only, idempotent, and non-destructive. The description adds useful behavioral detail about the unified envelope and per-author fields such as affiliations, work/citation counts, and h-index in extra. This goes beyond annotations and helps set expectations without contradicting them.

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 two sentences with no waste. It front-loads the core purpose and then provides the key output detail. Every sentence contributes value without padding.

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 annotations cover safety and idempotency, the input schema documents parameters, and an output schema exists, the description provides enough high-level context. The mention of the unified envelope and extra fields helps the agent interpret results. It falls just short of perfect completeness by not steering toward sibling tools, but that gap is minor.

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?

With schema description coverage reported at 0%, the description must compensate by explaining parameters. It only clarifies the query is an author name; it does not address page, per_page, or institution_id filtering. The nested schema contains some property descriptions, but the description itself adds minimal parameter meaning 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 states the specific verb 'Search' with the resource 'OpenAlex' and the scope 'authors by name', clearly distinguishing it from sibling search tools for works, sources, and institutions. It adds that results are author records with affiliations, counts, and h-index, leaving no ambiguity about what the tool returns.

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 when an agent needs to find authors by name, but it does not explicitly state when to prefer this over alternatives like oa_get_author for known IDs or oa_author_works for an author's works. Context is present, but no exclusions or routing guidance is given.

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