Skip to main content
Glama

Get ORCID Researcher Profile

orcid_get_profile
Read-onlyIdempotent

Fetch a researcher's public profile from ORCID: name, biography, keywords, researcher URLs, and external identifiers such as Scopus Author ID, ResearcherID, and Loop profile. This is the entry point for building a researcher dossier. Pass a bare ORCID iD (0000-0001-2345-6789) or a full URI (https://orcid.org/0000-0001-2345-6789). The profile contains only publicly visible data — researchers control visibility per field.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
orcid_idYesORCID iD — bare format (0000-0001-2345-6789) or full URI (https://orcid.org/0000-0001-2345-6789).

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
errorNoPresent when the call failed. Absent on success.
emailsNoPublicly visible email addresses.
orcidIdNoNormalized ORCID iD (bare format without URI prefix).
keywordsNoResearch keywords set by the researcher.
orcidUriNoFull ORCID URI (https://orcid.org/{id}).
biographyNoResearcher biography, if publicly visible.
countriesNoCountries listed in the researcher's address section.
creditNameNoPublished credit name, if set.
familyNameNoFamily (last) name, if publicly visible.
givenNamesNoGiven (first) name, if publicly visible.
researcherUrlsNoResearcher-provided URLs (personal site, lab page, blog, etc.).
externalIdentifiersNoExternal identifiers from scholarly systems (Scopus, Web of Science, Loop, etc.).

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already declare readOnlyHint and idempotentHint, so the safety profile is covered. The description adds a valuable behavioral trait not in annotations: 'The profile contains only publicly visible data — researchers control visibility per field.' This informs the agent about data availability and privacy constraints, which is beyond the structured 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?

Three sentences with zero waste. The first sentence states the purpose and contents, the second provides strategic context, and the third covers input formats and visibility. All information is pertinent and effectively front-loaded.

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?

The tool has one well-documented parameter, an output schema (so return values are covered), and the description explains what data is included and its public-only nature. There are no nested objects or additional complexity, and the description fully prepares an agent to call this tool correctly.

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 100% — the schema description already explains both accepted formats (bare ORCID iD and full URI) and the pattern enforces it. The description repeats this exact information without adding new meaning. Since the schema does the heavy lifting, a baseline of 3 is appropriate.

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 a specific verb (Fetch) and resource (researcher's public profile from ORCID) and enumerates the included fields (name, biography, keywords, researcher URLs, external identifiers). It also positions itself as 'the entry point for building a researcher dossier,' which clearly differentiates it from sibling tools focused on specific sections like affiliations or funding.

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 calls this 'the entry point for building a researcher dossier,' implying you should start here before using more specific sibling tools. However, it does not explicitly name alternatives or state when NOT to use this tool, leaving the routing logic to inference. This is a clear context but lacks explicit exclusions.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.5/5.0
Disambiguation5/5

Each tool targets a distinct aspect of ORCID data (profile, works, affiliations, funding, peer reviews, research resources) or distinct search mode (researcher disambiguation vs. structured registry search). The relationship between orcid_get_works and orcid_get_work_detail is clearly hierarchical, and the search tools are explicitly differentiated by use case.

Naming Consistency5/5

All tool names follow the consistent pattern `orcid_<verb>_<resource>` with snake_case throughout. Verbs are limited to `get`, `resolve`, `search`, and resource nouns are descriptive and uniform, making the API predictable.

Tool Count5/5

With 9 tools, the server covers all major ORCID profile and activity sections plus two search methods, which is well-scoped for an ORCID data retrieval service. No redundant or unnecessary tools are present.

Completeness5/5

The tool surface comprehensively covers the ORCID public data model: profile, works (with summary and detail), affiliations, funding, peer reviews, and research resources. It also includes search and disambiguation capabilities, leaving no obvious gaps for read-only ORCID interactions.