DataCite MCP Server
Provides read-only access to DataCite's index of 125M+ research DOIs, enabling full-text search, metadata retrieval, citation formatting (APA, MLA, Chicago, etc.), and exploration of relationships like citations and references.
Allows searching for DOIs associated with a researcher by ORCID iD or name, enabling discovery of a researcher's works indexed by DataCite.
Supports obtaining repository summaries and metadata quality reports for Zenodo (and other DataCite member repositories), with automatic resolution of repository names to DataCite client IDs.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@DataCite MCP Serverfind top 10 datasets about climate change"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
DataCite MCP Server
A Model Context Protocol (MCP) server that wraps the DataCite REST API, giving Claude and other MCP clients read-only access to DataCite's index of 125M+ research DOIs. No API key is required. The server runs as a local stdio process and communicates with Claude Desktop via the MCP protocol, enabling natural-language queries against the full DataCite catalogue: searching by keyword, person, funder, or repository; retrieving full metadata records; and exploring relationships between research outputs.
Claude Desktop Configuration
Add the following to your claude_desktop_config.json (found at ~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"datacite": {
"command": "node",
"args": ["/Users/[user_name]/Claude/projects/datacite/dist/index.js"]
}
}
}Related MCP server: OpenAIRE MCP Server
Build Instructions
cd [path-to-project]
npm install
npm run buildTo inspect the server interactively:
npm run inspectorAvailable Tools
Tool | Description |
| Full-text search across DataCite's 125M+ DOI index with filters for resource type, funder, year, repository, and more. Supports cursor-based pagination. |
| Retrieve complete metadata for a single DOI. Accepts any common DOI format (bare, URL, |
| Format a DOI as a formatted citation string. Supports APA, MLA, Chicago, Harvard, IEEE, Vancouver, BibTeX, and CSL JSON. |
| Retrieve view, download, and citation counts for a DOI. Optionally include time-series arrays. |
| Explore the relationship graph for a DOI — citations, references, versions, and parts. |
| Find all DOIs associated with a researcher by ORCID iD or name. |
| Browse DataCite member repositories (clients) with optional search and filtering. |
| Fetch the raw DataCite Metadata Schema XML for a DOI (base64-decoded). |
Available Prompts
Prompts are pre-built workflows invocable from Claude Desktop's prompt menu (⌘K → "Use a prompt").
Prompt | Arguments | Description |
|
| Find the top 10 most relevant DataCite records for a resource type and subject area. Returns a ranked table with repository/year observations and a suggested follow-up. |
|
| Full metadata quality and activity report for a repository. Pass a common name like |
|
| Researcher profile from DataCite records. Pass an ORCID iD ( |
Available Resources
Resource URI | Description |
| The complete DataCite |
| All DataCite member providers (organisations). |
| All DataCite repository clients. |
| Full metadata record for a given DOI as JSON. |
| Works that cite the given DOI. |
| Works cited by the given DOI. |
| Metadata for a specific DataCite provider. |
| Metadata for a specific DataCite repository client. |
Environment Variables
Copy .env.example to .env and adjust as needed. All variables are optional — defaults work out of the box.
Variable | Default | Description |
|
| URL included in the HTTP User-Agent header |
| (empty) | Contact email for DataCite's polite pool |
|
| Max API requests per second |
|
| DOI cache TTL (1 hour) |
|
| Search cache TTL (5 minutes) |
|
| Static data cache TTL (24 hours) |
Available Tools
9 toolsformat_citationB
Format a DOI as a citation string. Supports APA, MLA, Chicago, Harvard, IEEE, Vancouver, BibTeX, and CSL JSON styles.
| Name | Required | Description | Default |
|---|---|---|---|
| doi | Yes | ||
| style | No | apa | |
| locale | No | en-US |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided; description does not disclose behavior such as external API calls, error handling, or rate limits. The tool likely fetches metadata to format, but this is not stated.
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, the first states the purpose and the second lists supported styles. No fluff or repetition.
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 annotations, no output schema, and 0% param coverage, the description is insufficient. It does not explain the output format, error scenarios, or whether the tool makes network calls.
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 compensate. It partially describes 'doi' and 'style' (via the supported styles list) but completely omits 'locale'. Does not explain the format or validation for any parameter.
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?
Clearly states the action ('Format'), the resource ('a DOI as a citation string'), and lists supported citation styles (APA, MLA, Chicago, etc.). Differentiates from siblings like get_doi which retrieve metadata rather than format citations.
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?
Implies usage when a citation string is needed for a DOI, but lacks explicit guidance on when to use this tool versus alternatives. No mention of prerequisites, limitations, or when not to use it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_doiA
Retrieve complete metadata for a single DOI. Accepts any common DOI format (bare, URL, doi: prefix). Optionally includes the raw DataCite Schema XML.
| Name | Required | Description | Default |
|---|---|---|---|
| doi | Yes | ||
| include_xml | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Description implies a read operation but does not explicitly state idempotency, auth requirements, or side effects. With no annotations, the agent lacks clarity on safety.
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 sentences, front-loaded with the main purpose, and no redundant information. Every sentence adds value.
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?
Covers the tool's core functionality and optional parameter. Lacks details on return structure or error handling, but for a simple retrieval tool with no output schema, it is adequately complete.
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?
Adds meaningful context for the 'doi' parameter by noting accepted formats (bare, URL, doi: prefix), and for 'include_xml' by explaining it returns raw DataCite XML. Schema coverage is 0%, so description compensates well.
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?
Clearly states 'Retrieve complete metadata for a single DOI', which is a specific verb+resource. Distinguishes from siblings like search_dois (search) and get_doi_metrics (metrics) by focusing on single DOI metadata retrieval.
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 vs alternatives. Only provides a tip on accepted DOI formats, but does not mention related tools or conditions for use.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_doi_metricsA
Retrieve view, download, and citation counts for a DOI. Optionally include monthly time-series arrays.
| Name | Required | Description | Default |
|---|---|---|---|
| doi | Yes | ||
| include_time_series | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided; the description only outlines the action but does not disclose behavioral traits such as authentication requirements, rate limits, or whether counts are real-time. For a read operation, minimal guidance is given.
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?
Single sentence with clear front-loading of purpose. No redundant information; every word contributes.
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 omits return format and error conditions. It covers the core action but lacks completeness for an agent to fully understand the response structure.
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?
The description adds meaning for include_time_series by mentioning 'monthly time-series arrays', but does not clarify the doi parameter beyond the name. With 0% schema coverage, it partially compensates.
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 it retrieves view, download, and citation counts for a DOI, with optional time-series. This is specific and distinguishes it from siblings like get_doi (metadata) and get_related_works.
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 explicit guidance on when to use versus alternatives like get_doi or search_dois. The description implies usage for metrics but lacks exclusions or context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_doi_schema_xmlA
Fetch the raw DataCite Metadata Schema XML for a DOI (base64-decoded). Useful for inspecting the complete, canonical metadata record.
| Name | Required | Description | Default |
|---|---|---|---|
| doi | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description must fully disclose behavior. It mentions that the output is 'base64-decoded' and 'XML,' but it does not address potential error states, authentication requirements, rate limits, or other side effects. This is adequate but not 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?
The description is two concise sentences that immediately convey the purpose. Every word serves a purpose, and there is no redundancy or unnecessary detail.
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 (single parameter, no output schema), the description adequately covers the return format and the decoding behavior. It could mention error handling or the structure of the XML, but overall it is sufficient for the tool's complexity.
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?
The input schema provides the 'doi' parameter with no description (0% coverage). The description only repeats that it fetches for a DOI, adding no additional semantic guidance about format, constraints, or examples. More detail would help, such as the expected format or that it must be a valid DataCite DOI.
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 ('Fetch') and the resource ('raw DataCite Metadata Schema XML for a DOI'), with a specific detail about base64-decoding. It distinguishes from sibling tools like get_doi or get_doi_metrics by focusing on the canonical XML record.
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 indicates the tool is 'useful for inspecting the complete, canonical metadata record,' providing clear context for its use. However, it does not explicitly state when not to use it or suggest alternatives, such as using get_doi for a different format.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_repositoryA
Retrieve full metadata for a single DataCite repository (client) by its ID. Returns name, symbol, alternateName, clientType, isActive, re3data, opendoar, issn, prefixes, language, year, created, updated, and more. Pass includeStats:true to add doiCount (fetched via a secondary /dois call). Note: per-client view/download/citation counts are not exposed by the DataCite API.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | DataCite client ID (e.g. 'cern.zenodo', 'dryad.dryad'). Use list_repositories to discover IDs. | |
| includeStats | No | When true, adds doiCount fetched via /dois?client-id={id}&page[size]=0. Returns doiCount:null if the secondary call fails. Note: viewCount/downloadCount/citationCount are not available from the DataCite API. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Since no annotations are provided, the description fully explains behavior: it notes that includeStats triggers a secondary API call, that doiCount may be null if that call fails, and explicitly states limitations ('per-client view/download/citation counts are not exposed').
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, using only two sentences and a note. It is front-loaded with the core purpose and efficiently adds detail without redundancy.
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, the description covers all necessary aspects: what the tool does, how to use it, what data it returns, and limitations. The lack of an output schema is compensated by listing returned fields in the description.
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?
The input schema has 100% coverage, so the baseline is 3. The description does not add significant meaning beyond what the schema already provides for both parameters, though it restates the purpose of includeStats.
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 ('Retrieve full metadata'), the resource ('a single DataCite repository'), and the exact fields returned. It distinguishes itself from the sibling 'list_repositories' tool by focusing on a single repository by ID.
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 provides guidance on discovering IDs using 'list_repositories' and explains the optional 'includeStats' parameter. While it doesn't explicitly state when not to use this tool, the context is clear enough for an agent to decide.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_repositoriesA
Browse DataCite-registered repositories and data centers. Supports full-text search (Elasticsearch, matches name/alternateName/description) and filtering by clientType or providerId. Returns id, name, symbol, alternateName, clientType, isActive, re3data, prefixes, language, year, created/updated timestamps, and more. Pass includeStats:true to add doiCount (fetched via secondary /dois calls, one per result). Note: viewCount/downloadCount/citationCount are not available from the DataCite API and will not appear even when includeStats:true.
| Name | Required | Description | Default |
|---|---|---|---|
| query | No | ||
| clientType | No | repository | periodical | service | igsnCatalog | raidAgency | |
| providerId | No | ||
| includeStats | No | ||
| page_size | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description fully bears the transparency burden. It discloses that includeStats triggers secondary API calls, that certain count fields are unavailable, and describes the Elasticsearch-based full-text search behavior.
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 front-loaded with the main purpose and then details in a logical order. It is concise, covering essentials without unnecessary elaboration. A slight improvement could separate usage from behavioral notes, but overall effective.
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 and moderate complexity (5 params), the description covers search, filtering, returned fields, stats limitations, and missing counts. It lacks explicit pagination behavior (e.g., how page_size works) but is otherwise thorough.
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?
The description adds significant meaning beyond the schema: explains query matches name/alternateName/description, clarifies clientType values and filtering, describes providerId filtering, and details includeStats behavior and cost. With only 20% schema coverage, this is highly valuable.
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 it lists DataCite repositories and data centers with search and filtering. It specifies supported search and filtering options, distinguishing it from siblings like get_repository which likely handles single entities.
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 implicitly guides usage by detailing capabilities (search, filter) and limitations (missing counts, secondary calls for stats). It does not explicitly contrast with siblings but the context makes it clear this is for listing.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_by_personC
Find all DOIs associated with a researcher by ORCID iD or name.
| Name | Required | Description | Default |
|---|---|---|---|
| orcid | No | ||
| name | No | ||
| role | No | any | |
| resource_type | No | ||
| page_size | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided. The description does not disclose behavioral details such as pagination, default values, or that parameters like 'role' and 'resource_type' can filter results. It only mentions ORCID and name.
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 (one sentence), but at the cost of omitting important details about multiple parameters and behavior. It is under-specified rather than efficiently concise.
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?
With 5 parameters, no annotations, and no output schema, the description fails to provide sufficient context. It omits pagination, filtering capabilities, and the return format, leaving the tool's full functionality unclear.
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%. The description only explains 'orcid' and 'name' as search criteria, but does not clarify 'role', 'resource_type', or 'page_size'. This leaves the agent potentially unaware of available filters.
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 tool finds DOIs associated with a researcher by ORCID or name. It distinguishes from siblings like 'search_dois' (broader) and 'get_doi' (single DOI). However, it could be more precise about the scope.
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 versus alternatives. It implies a person-based search, but lacks explicit when-to-use or when-not-to-use instructions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_doisA
Search DataCite's index of 125M+ research DOIs. Supports full-text queries and filters by resource type, funder, year, repository, and more.
| Name | Required | Description | Default |
|---|---|---|---|
| query | No | ||
| resource_type | No | ||
| funder_ror_id | No | ||
| affiliation_ror_id | No | ||
| client_id | No | ||
| provider_id | No | ||
| prefix | No | ||
| published_year | No | ||
| sort | No | ||
| page_size | No | ||
| page_cursor | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided. The description mentions it indexes 125M+ DOIs, but lacks details on pagination, sorting defaults, rate limits, or auth requirements. Adequate for a search tool 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 concise sentences, front-loaded with purpose. No wasted words, but could be structured to list filters more clearly. Still, very efficient.
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?
With 11 parameters, no output schema, and no description of return structure or pagination, the description is incomplete for an agent to use effectively. Lacks details on how to handle results beyond the search itself.
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 compensate. It only names a few filters (resource type, funder, year, repository) but does not explain parameter specifics like format for affiliation_ror_id or curser usage. Insufficient for 11 parameters.
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 tool searches DataCite's index of DOIs, with specific capabilities like full-text queries and filters. It distinguishes itself from siblings like get_doi (single retrieval) and search_by_person (person 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 broad searches with filtering, but does not explicitly state when not to use it or list alternatives. However, the context of sibling tools makes the primary use case clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
9 tool updates
v0.4.0- First observed
format_citation - First observed
get_doi - First observed
get_doi_metrics - First observed
get_doi_schema_xml - First observed
get_related_works - First observed
get_repository - First observed
list_repositories - First observed
search_by_person - First observed
search_dois
TDQS
Scored across 9 tools
Each tool has a clearly distinct purpose: formatting citations, retrieving metadata, metrics, schema XML, related works, repository info, listing, and searching by person or general query. No overlap in functionality.
All tool names follow a consistent verb_noun pattern (e.g., format_citation, get_doi, list_repositories, search_dois). The naming is uniform and predictable.
9 tools is well within the ideal range for a focused server. Each tool serves a specific purpose without redundancy, and the count feels appropriate for the scope of DataCite access.
The tool set covers all major read operations for DataCite DOIs: retrieval, search, metrics, citation formatting, schema, related works, and repository info. Minor gaps exist (e.g., no write/update operations, no per-repository stats), but these are consistent with a read-only API focus.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Search 150M+ academic works, journals, and funders via Crossref API.
Scholarly search: OpenAlex, Crossref, arXiv, OpenCitations and PubMed in one endpoint.
Query your org's data in natural language — read-only MCP access to SQL, NoSQL, files & warehouses.
Access the OpenAlex academic research catalog — 270M+ publications.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceEnables AI assistants to search academic literature and retrieve detailed metadata for papers, journals, and funding organizations via the Crossref database. It supports DOI-based lookups and keyword searches to facilitate programmatic access to scholarly research data.7-
- AlicenseAqualityDmaintenanceEnables AI assistants to explore the OpenAIRE Research Graph and ScholExplorer citation index, discovering citation relationships and retrieving metadata for publications, datasets, and software.21Apache 2.0
- AlicenseNot gradedqualityDmaintenanceEnables searching and retrieving scholarly works, authors, institutions, and citation networks from the OpenAlex catalog via natural language.72ISC
- FlicenseAqualityBmaintenanceEnables searching and retrieving scholarly metadata from Crossref's public REST API, including works, journals, funders, and members, without requiring an API key.101-
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/alexwade/datacite-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server