Skip to main content
Glama

Server Details

Researcher profiles, works, affiliations, funding, and peer reviews from the ORCID registry.

If you are the author of this connector, you can claim ownership with GitHub, an HTTP challenge, or a DNS record. Claimed connector authors can inspect health checks, view analytics, and manage their listing.
Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
cyanheads/orcid-mcp-server
GitHub Stars
2
Server Listing
@cyanheads/orcid-mcp-server

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 DescriptionsA

Average 4.4/5 across 9 of 9 tools scored.

Server CoherenceA
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.

Available Tools

9 tools
orcid_get_affiliationsGet ORCID Researcher AffiliationsA
Read-onlyIdempotent
Inspect

Fetch affiliation records for an ORCID researcher. The types parameter controls which affiliation sections to return: employment, education, invited-positions, distinctions, memberships, qualifications, services, or all. Default is employment and education. Returns organization names, disambiguated organization identifiers (ROR/GRID/Ringgold), departments, roles, and date ranges. Affiliation data is self-reported; absence does not mean no affiliation.

ParametersJSON Schema
NameRequiredDescriptionDefault
typesNoWhich affiliation types to return. Defaults to employment and education. Use ["all"] to get every section.
orcid_idYesORCID iD — bare format (0000-0001-2345-6789) or full URI (https://orcid.org/0000-0001-2345-6789).

Output Schema

ParametersJSON Schema
NameRequiredDescription
errorNoPresent when the call failed. Absent on success.
noticeNoNote when no affiliations were found — may indicate private visibility or no self-reported affiliations.
orcidIdNoNormalized ORCID iD (bare format).
orcidUriNoFull ORCID URI.
affiliationsNoAffiliation records for the requested types.
requestedTypesNoAffiliation types that were requested.
affiliationCountNoTotal number of affiliation records returned.
Behavior5/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 known. The description adds a valuable behavioral note that affiliation data is self-reported and that absence does not imply no affiliation, which is critical for correct interpretation. It also mentions the specific fields returned (organization names, identifiers, etc.), enriching the behavioral context beyond 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?

The description is three sentences, each carrying weight: purpose, parameter control, and data caveat. It is front-loaded with the primary action and remains free of redundant phrasing. Every sentence earns its place without padding.

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 is a straightforward read operation with an output schema available. The description covers the purpose, parameter behavior, returned fields, and a crucial data-quality caveat. There is no missing information an agent needs to invoke it correctly or interpret results appropriately.

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?

Input schema covers 100% of parameters with descriptions, so the baseline is 3. The description reinforces the types parameter's meaning by listing all acceptable values and the default, and adds context on what the returned data contains. It slightly exceeds the schema by explaining the output fields, but does not add significant new param-level semantics beyond what the schema already provides.

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 ('Fetch') and resource ('affiliation records for an ORCID researcher'), and clearly differentiates from sibling tools by focusing on affiliations. It states the exact scope and lists the types parameter's possible values, leaving no ambiguity about what this tool retrieves.

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 provides clear context on when to use this tool (to fetch affiliations) and explains the default behavior of the types parameter. However, it does not explicitly reference sibling tools or state when to choose an alternative (e.g., if needing funding or peer reviews), so the guidance is implied rather than explicit.

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

orcid_get_fundingGet ORCID Researcher FundingA
Read-onlyIdempotent
Inspect

Fetch funding records for an ORCID researcher: grants, contracts, awards, and salary awards. Returns funder names, funder organization identifiers, grant numbers, and funding periods. Funding data is entirely self-reported — most researchers do not enter funding even when they have grants. Absence of funding records does not imply absence of funding. When records exist they are high-value for grant tracking and funder analysis.

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

Output Schema

ParametersJSON Schema
NameRequiredDescription
errorNoPresent when the call failed. Absent on success.
noticeNoNote when no funding is found — absence of records does not mean absence of funding.
fundingNoFunding records associated with this ORCID iD.
orcidIdNoNormalized ORCID iD (bare format).
orcidUriNoFull ORCID URI.
fundingCountNoTotal number of funding records returned.
Behavior1/5

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

Annotations declare openWorldHint=false, meaning absence of a value implies absence in the real world (closed-world). The description explicitly states the opposite: 'Absence of funding records does not imply absence of funding' — the open-world position. This directly contradicts the annotation, giving the agent conflicting guidance on how to interpret missing data.

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?

Five sentences, each earning its place: purpose, return fields, the self-reporting caveat, the absence implication, and the value statement. Purpose is front-loaded and the caveat is placed before the value claim for logical flow. No 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?

For a single-parameter read-only tool with a full output schema, this is complete. It states what it returns, warns about data incompleteness, and explains when the results are valuable — an agent can invoke it and interpret the response 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 description coverage is 100% for the single orcid_id parameter, including the pattern and accepted formats (bare or full URI). The description adds no further parameter details, so it neither raises nor lowers the baseline of 3.

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?

States a specific verb and resource ('Fetch funding records for an ORCID researcher') with enumerated record types (grants, contracts, awards, salary awards) and the returned fields (funder names, org identifiers, grant numbers, funding periods). The funding focus clearly differentiates it from siblings like orcid_get_works and orcid_get_affiliations.

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?

Provides clear interpretive context: funding data is 'entirely self-reported' and 'high-value for grant tracking and funder analysis'. It tells the agent when results are meaningful, though it does not explicitly contrast with sibling tools or state when to prefer an alternative.

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

orcid_get_peer_reviewsGet ORCID Researcher Peer ReviewsA
Read-onlyIdempotent
Inspect

Fetch peer review activity for an ORCID researcher: convening organizations (journals and publishers), reviewer role (reviewer, editor, chair, etc.), review type, completion dates, and ISSN-keyed group identifiers. Use to assess editorial activity, journal affiliations, and the scope of a researcher's peer review contributions. Peer review records are self-reported or imported by participating publishers — coverage varies by researcher.

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

Output Schema

ParametersJSON Schema
NameRequiredDescription
errorNoPresent when the call failed. Absent on success.
noticeNoNote when no peer reviews are found — coverage varies by researcher and publisher participation.
orcidIdNoNormalized ORCID iD (bare format).
orcidUriNoFull ORCID URI.
peerReviewsNoPeer review records for this ORCID iD.
reviewCountNoTotal number of peer review records returned.
Behavior4/5

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

Annotations already declare readOnlyHint=true, openWorldHint=false, and idempotentHint=true. The description adds a meaningful behavioral caveat: 'Peer review records are self-reported or imported by participating publishers — coverage varies by researcher.' This discloses potential data incompleteness, which is not captured in annotations and is important for interpreting results. No contradiction with annotations exists.

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 three concise sentences with zero redundancy. The first sentence front-loads the core purpose and field list, the second states the use case, and the third provides an essential data-quality caveat. Every sentence adds value, and the structure is tight and scannable.

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?

For a simple getter with one fully-documented parameter and an existing output schema (which obviates the need to explain return values), the description covers all essential context: what the tool retrieves, when to use it, and a critical caveat about data coverage. Nothing an agent needs to decide whether and how to call it is missing.

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 description coverage is 100%; the single parameter orcid_id is fully documented in the schema (format, bare URI, pattern). The description does not add additional parameter semantics beyond what the schema already provides. Since the schema carries the full burden, the 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 ('peer review activity for an ORCID researcher') and enumerates the exact data points returned (convening organizations, reviewer role, review type, completion dates, ISSN-keyed group identifiers). This clearly distinguishes it from sibling getters like orcid_get_works or orcid_get_affiliations, which target different record types. The scope is unambiguous.

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 provides a clear use case: 'Use to assess editorial activity, journal affiliations, and the scope of a researcher's peer review contributions.' This tells an agent when to invoke the tool, but it does not explicitly contrast with alternatives (e.g., 'use this instead of works for review data'). Given the sibling names are self-explanatory, the lack of explicit exclusions is minor but still leaves the when-not-to-use guidance implicit.

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

orcid_get_profileGet ORCID Researcher ProfileA
Read-onlyIdempotent
Inspect

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.

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

Output Schema

ParametersJSON Schema
NameRequiredDescription
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.).
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.

orcid_get_research_resourcesGet ORCID Research ResourcesA
Read-onlyIdempotent
Inspect

List research resources associated with an ORCID researcher — compute allocations, equipment access, lab facilities, data resources, and clinical study registrations. This is a newer ORCID section; most researchers have no entries. Returns the resource title, hosting organization, external identifiers (often a URI to the allocation portal), and access period. Most entries are deposited by resource-allocation systems (e.g. ACCESS, XSEDE) rather than researchers themselves.

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

Output Schema

ParametersJSON Schema
NameRequiredDescription
errorNoPresent when the call failed. Absent on success.
noticeNoNote when no research resources are found — this section is sparsely populated across ORCID profiles.
orcidIdNoNormalized ORCID iD (bare format).
orcidUriNoFull ORCID URI.
resourcesNoResearch resources associated with this ORCID iD.
resourceCountNoTotal number of research resources returned.
Behavior4/5

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

Annotations already declare readOnlyHint=true and idempotentHint=true, so the description need not restate those. It adds valuable context beyond annotations: the section's newness, the likelihood of empty results, the typical deposition source, and the specific return fields (title, hosting organization, external identifiers, access period). This helps the agent set expectations without contradicting any annotation.

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 three sentences with no redundancy. It leads with the main verb and resource, then packs useful contextual details and return fields into a compact structure. Every sentence 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?

For a single-parameter read tool with annotations and an output schema, the description is complete: it defines the tool's purpose, the data's typical state (mostly empty), who deposits it, and what the response contains. An agent can decide whether to call it and what to expect without further inference.

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?

The input schema already provides 100% coverage for the single parameter 'orcid_id', including format and accepted URI or bare forms. The tool description adds no additional parameter-level meaning beyond what the schema documents, so the 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 ('List') and a precise resource ('research resources associated with an ORCID researcher'), and enumerates the exact types included (compute allocations, equipment access, lab facilities, data resources, clinical study registrations). It also distinguishes this from sibling tools by referencing the ORCID section, making the tool's purpose unmistakable.

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 clearly scopes usage to research resources and adds practical guidance: it's a newer section, most researchers have no entries, and deposits come from resource-allocation systems like ACCESS and XSEDE. It does not explicitly name alternatives or state when not to use it, but the sibling names (affiliations, funding, works) and the focused description make the usage context clear.

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

orcid_get_work_detailGet ORCID Work Details (Bulk)A
Read-onlyIdempotent
Inspect

Fetch full detail records for 1–100 works by their put-codes in a single request. Put-codes are returned by orcid_get_works in the putCode field of each work entry. Returns the abstract (short-description), all contributors with CRediT roles, the complete external ID list (DOI, PMID, arXiv, ISBN, etc.), citation metadata (BibTeX or other formats when provided), journal title, and URL for each work. Per-record errors (not-found or inaccessible put-codes) are surfaced as error entries rather than failing the whole call.

ParametersJSON Schema
NameRequiredDescriptionDefault
orcid_idYesORCID iD — bare format (0000-0001-2345-6789) or full URI (https://orcid.org/0000-0001-2345-6789).
put_codesYesArray of 1–100 work put-codes to fetch. Put-codes are available in the putCode field returned by orcid_get_works.

Output Schema

ParametersJSON Schema
NameRequiredDescription
errorNoPresent when the call failed. Absent on success.
worksNoSuccessfully resolved work detail records.
errorsNoPer-record errors for put-codes that could not be resolved (not found or inaccessible). Empty when all put-codes resolved successfully.
orcidIdNoNormalized ORCID iD (bare format).
orcidUriNoFull ORCID URI.
Behavior4/5

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

Annotations already declare readOnlyHint=true and idempotentHint=true, which covers the safety profile. The description adds genuine behavioral value beyond that: per-record errors for not-found or inaccessible put-codes are surfaced as error entries rather than failing the whole call. It also enumerates the returned fields (abstract, CRediT contributors, external ID list, citation metadata, journal, URL). No contradiction exists — 'Fetch' aligns with readOnlyHint.

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

Conciseness4/5

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

A single four-sentence paragraph that front-loads the core action in the first sentence and then builds detail. Every sentence earns its place: scope, input provenance, returned fields, and error behavior. It is informative without being bloated, though slightly dense in the field-enumeration sentence.

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 an output schema exists and the input schema is fully self-describing, the description covers the essential operational context: batch limits, the dependency on orcid_get_works, per-record error handling, and the return payload composition. No critical gap prevents an agent from calling it correctly, though it could optionally name the output schema structure explicitly.

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 100%, so both parameters are fully documented in the schema, giving a baseline of 3. The description adds value on top by explaining that put_codes are sourced from the putCode field of orcid_get_works responses, providing provenance guidance that the schema alone lacks. This linkage helps the agent know where to retrieve the required input.

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 a specific verb and resource: 'Fetch full detail records for 1–100 works by their put-codes in a single request.' It clearly scopes the tool to bulk work detail retrieval, and distinguishes it from siblings by naming the input mechanism (put-codes) and the parent tool (orcid_get_works) that supplies them. An agent can immediately tell this apart from orcid_get_works, orcid_get_affiliations, or orcid_get_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 gives an implicit workflow: 'Put-codes are returned by orcid_get_works in the putCode field of each work entry,' which tells the agent that this tool depends on a prior orcid_get_works call. This provides clear contextual guidance on when to invoke the tool. However, it offers no explicit exclusions or 'use X instead of Y when' routing for the other siblings (affiliations, funding, peer reviews), so the guidance is implied rather than stated.

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

orcid_get_worksGet ORCID Researcher WorksA
Read-onlyIdempotent
Inspect

Retrieve works associated with an ORCID iD — publications, datasets, software, preprints, and more. Returns work summaries with put-codes, titles, types, publication dates, journal names, and all external identifiers (DOIs, PMIDs, arXiv IDs, ISBNs). The first 50 works are returned by default; workCount reports the total available, and prolific records are paged with offset and the returned nextOffset (or raise limit). Set include_external_ids to false to omit identifier lists for a lighter payload. Pass the putCode from each work to orcid_get_work_detail to retrieve the full record including abstract and contributors. External IDs are ready for chaining to Crossref, PubMed, or arXiv servers. Works are self-reported; a researcher may not have linked all their publications.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum works to return in this response (default 50, max 1000). The full list is sliced locally — page prolific records with offset and the returned nextOffset.
offsetNoZero-based index of the first work to return (default 0). Combine with limit to page through the full works list.
orcid_idYesORCID iD — bare format (0000-0001-2345-6789) or full URI (https://orcid.org/0000-0001-2345-6789).
include_external_idsNoWhen true (default), each work carries its external identifiers (DOIs, PMIDs, arXiv IDs, ISBNs). Set false to omit them for a lighter payload when only titles, types, and dates are needed.

Output Schema

ParametersJSON Schema
NameRequiredDescription
errorNoPresent when the call failed. Absent on success.
worksNoWorks for this ORCID iD, sliced to the requested offset and limit.
noticeNoNote when the works list is empty — may indicate no self-reported works or private visibility settings.
offsetNoZero-based offset applied to the full works list for this response.
orcidIdNoNormalized ORCID iD (bare format).
orcidUriNoFull ORCID URI.
truncatedNoTrue when more works are available beyond this response — fetch them with nextOffset.
workCountNoTotal works available for this ORCID iD, before offset and limit are applied.
nextOffsetNoOffset to pass on the next call to continue paging. Omitted when this response includes the final work.
returnedCountNoNumber of works returned in this response, after applying offset and limit.
Behavior5/5

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

Annotations only declare readOnlyHint, openWorldHint, and idempotentHint. The description adds substantial behavioral context: default paging behavior (first 50, workCount total, nextOffset), how limit and offset interact, the option to slim payloads, chaining readiness of external IDs to Crossref/PubMed/arXiv, and the caveat that works are self-reported and may be incomplete. This goes far beyond the safety hints.

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 about four sentences, front-loaded with the core purpose and immediately followed by return details, paging, chaining, and a data-quality caveat. Every sentence adds distinct value; there is no fluff, redundancy, or irrelevant detail. The structure guides the agent from what it does to how to page and what to expect.

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 output schema and annotations are present, the description covers everything an agent needs to call correctly: what fields are returned, how to page with offset/limit/nextOffset, how to get full details via orcid_get_work_detail, how to chain external IDs, and the self-reporting limitation. No missing operational or safety details were identified.

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 100%, so each parameter is fully documented in the schema. The description adds value by clarifying the paging interaction ('the full list is sliced locally'), the default and max for limit, the purpose of include_external_ids as a payload optimization, and the two accepted formats for orcid_id. This is more than a mere restatement, justifying an elevated score above the baseline.

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 a specific verb-resource pair, 'Retrieve works associated with an ORCID iD,' and enumerates content types (publications, datasets, software, preprints) along with returned fields (put-codes, titles, types, dates, journal names, external IDs). It clearly distinguishes from siblings like orcid_get_work_detail (by referencing it for full records) and other resource-specific tools (affiliations, funding, etc.) through the focus on works.

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 provides clear usage context: it explains default limit of 50, paging with offset and nextOffset, the option to reduce payload with include_external_ids, and explicitly routes to orcid_get_work_detail when full records including abstracts are needed. It lacks an explicit 'do not use when' statement, but the alternative path is explicit enough that an agent can choose correctly.

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

orcid_resolve_researcherResolve ORCID ResearcherA
Read-onlyIdempotent
Inspect

Disambiguate an author name to a verified ORCID iD. Returns ranked candidates (5 by default, up to 20 via the rows parameter) with transparent disambiguation signals: name match type (exact/partial/other-name/none), institution overlap flag, and whether a DOI or PMID anchor was used in the query. A DOI or PMID anchor is near-deterministic — it filters to researchers who have linked that specific work to their ORCID record. Use this tool (not orcid_search_researchers) when the input is an ambiguous name that needs ranked disambiguation. No synthetic scores are used — raw signals only.

ParametersJSON Schema
NameRequiredDescriptionDefault
doiNoDOI of a work authored by this researcher. Acts as a near-deterministic anchor — filters to researchers who linked this DOI to their ORCID record.
nameYesAuthor name to disambiguate (full name preferred, e.g. "Jennifer Doudna" or "J. Doudna").
pmidNoPubMed ID of a work authored by this researcher. Acts as a near-deterministic anchor — filters to researchers who linked this PMID to their ORCID record.
rowsNoMaximum candidate count to return (1–20). Defaults to 5.
affiliationNoResearcher's institution or organization name. Used for institution overlap scoring and optionally as a search constraint.

Output Schema

ParametersJSON Schema
NameRequiredDescription
errorNoPresent when the call failed. Absent on success.
noticeNoRecovery hint when no candidates are found or when the anchor query failed to match.
queryUsedNoThe Solr query that produced the returned candidates — the primary query, or the final relaxed query when a fallback ran. Paired with totalFound.
candidatesNoRanked candidates, ordered by name match quality then institution overlap.
totalFoundNoTotal ORCID records matching queryUsed (the query that produced the returned candidates).
primaryQueryNoThe primary, most-constrained Solr query attempted first (name + optional anchor + optional affiliation). Always populated; equals queryUsed when no relaxed fallback ran.
relaxedQueryNoSolr query used in a secondary relaxed search, if the primary returned no results.
primaryTotalFoundNoTotal ORCID records matching primaryQuery. Zero when the primary query found nothing and a relaxed fallback produced the returned candidates.
Behavior5/5

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

Annotations (readOnlyHint, openWorldHint, idempotentHint) already signal safety, but the description adds substantial behavioral context: ranked results, disambiguation signals (name match type, institution overlap, DOI/PMID anchor), and 'No synthetic scores are used — raw signals only.' This goes well beyond the annotation hints and fully discloses internal logic.

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, each earning its place: the first defines the core action and output, the second explains the return signals, the third gives usage guidance and disambiguation philosophy. No filler, front-loaded with the primary purpose.

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, the description doesn't need to detail return format beyond what it already provides. It covers all necessary call context: when to use, what parameters matter (DOI/PMID anchors), and what results contain. Nothing an agent needs to invoke the tool correctly is missing.

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 100% and each parameter has a description, so baseline is 3. The description adds meaningful extra semantics: explains the near-deterministic anchor behavior for doi/pmid, the default and max for rows, and preference for full names in the name parameter. This elevates it above baseline but doesn't reinvent 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 a clear verb and resource: 'Disambiguate an author name to a verified ORCID iD.' It also explicitly distinguishes itself from the sibling orcid_search_researchers by stating when to use it instead, which makes the purpose unambiguous.

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 when-to-use guidance: 'Use this tool (not orcid_search_researchers) when the input is an ambiguous name that needs ranked disambiguation.' Also clarifies the near-deterministic nature of DOI/PMID anchors, giving concrete selection criteria beyond basic alternatives.

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

orcid_search_researchersSearch ORCID ResearchersA
Read-onlyIdempotent
Inspect

Search the ORCID registry using structured field parameters or raw Solr syntax. All provided structured params are ANDed together. The query field appends raw Solr syntax to the generated clause. Returns ORCID iDs with inline name and institution data — no follow-up profile fetches needed for basic disambiguation. For ranked disambiguation of an ambiguous author name, use orcid_resolve_researcher instead. The ORCID Public API caps results at 10,000 — use pagination for large result sets.

ParametersJSON Schema
NameRequiredDescriptionDefault
doiNoDOI to anchor the search. Returns researchers who have linked this DOI to their ORCID record.
pmidNoPubMed ID to anchor the search. Returns researchers who have linked this PMID to their ORCID record.
rowsNoMaximum results to return (1–1000).
queryNoRaw Solr query string appended to the generated clause with AND. Supports all ORCID Solr fields and boolean operators.
startNoPagination offset (0-based), 0–10,000. The ORCID Public API rejects start > 10,000 for unauthenticated requests.
ror_idNoROR organization ID to filter by (full URL, e.g. https://ror.org/00f54p054). Returns researchers affiliated with this organization.
keywordNoKeyword to search in the researcher's keyword fields. Phrase match.
given_nameNoResearcher's given (first) name.
affiliationNoOrganization name to filter by. Phrase match.
family_nameNoResearcher's family (last) name.

Output Schema

ParametersJSON Schema
NameRequiredDescription
rowsNoNumber of results returned in this response.
errorNoPresent when the call failed. Absent on success.
startNoPagination offset used for this response.
noticeNoRecovery hint when results are empty, pagination overshoots the total, or matches exceed the 10,000-offset ceiling. Absent on fully retrievable pages.
resultsNoMatching researchers with inline name and institution data.
numFoundNoTotal number of matching records in ORCID (before pagination).
nextStartNoOffset to pass as start on the next call to continue paging. Present only when more matches remain below the ORCID Public API 10,000-offset ceiling; omitted at the final reachable page and when this response already includes the last match.
truncatedNoTrue when numFound exceeds the ORCID Public API's 10,000-offset retrieval ceiling, so some matches cannot be paged to with the current query. Narrow or partition the query to reach them.
effectiveQueryNoSolr query sent to the ORCID API.
Behavior4/5

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

Annotations already declare readOnlyHint, openWorldHint, and idempotentHint, so the description's added behavior around the API cap (10,000) and pagination requirement, plus the return of inline data, meaningfully extends this. No contradiction with annotations. It does not mention error cases, but given annotations, this is adequate.

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 ~120 words but every sentence carries weight: purpose, semantics, return format, alternative, and limit are all addressed. The most critical usage distinction (sibling alternative) is placed near the end but is clearly flagged. No redundant language.

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 10 optional parameters and an output schema, and the description covers how parameters combine, what the response shape is (inline data), and the pagination cap. It also directs to the correct sibling for a specific scenario. Nothing essential is missing for an agent to invoke it correctly.

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?

The input schema fully describes each parameter (100% coverage), but the description adds critical combination semantics: structured params are ANDed, and the query field appends raw Solr syntax. This shared behavior isn't evident from the schema alone and helps the agent construct correct queries.

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 and resource: 'Search the ORCID registry' using structured parameters or raw Solr. It clearly differentiates from sibling get_* tools by focusing on search and explicitly names orcid_resolve_researcher as an alternative for a different use case. The return value (ORCID iDs with inline name/institution) is also clarified.

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?

It explicitly instructs to use orcid_resolve_researcher when ranked disambiguation of an ambiguous name is needed, providing a clear when-not. It mentions pagination for large result sets, which guides the agent on handling large queries. The note about no follow-up fetches for basic disambiguation suggests this tool is the first step, with get_* tools for details.

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

Frequently Asked Questions

Discussions

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

Related MCP Servers

  • A
    license
    Not graded
    quality
    C
    maintenance
    Enables querying ORCID public records, including profiles, publications, employment, education, and search, through natural language or direct tool calls.
    14
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    Enables searching and retrieving organization records from the Research Organization Registry, with fuzzy affiliation matching.
    13
    MIT
  • A
    license
    A
    quality
    F
    maintenance
    For AI agents and humans: Discover researchers, publications, datasets, and code repositories across a federated network of researcher digital twins. Compute S-Index impact metrics combining citation data from Semantic Scholar and Google Scholar with code and dataset quality scores from GitHub and Figshare.
    8
    1
    MIT

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.