zenodo-mcp-server
Provides tools for searching and resolving Zenodo datasets, software, and publications by DOI, including version tracing, funding information, file listing, and text previews.
Click on "Deploy 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., "@zenodo-mcp-serversearch for recent datasets on quantum computing"
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.
Overview
Datasets, software releases, and publications from Zenodo, CERN's open research repository, over its public REST API. Search deposits with filters for funder, grant, community, license, and file type; resolve any Zenodo DOI, concept DOI, or URL to its record; walk a deposit's versions; and list, open, and preview its files, including members of .zip archives. Runs as a stdio process or a local Streamable HTTP server.
Tools
Tool | Description |
| Search deposits by keyword plus type, community, funder, grant, ORCID, file type, license, access, and date filters, with facet counts |
| Resolve one deposit from a record id, DOI, concept DOI, or URL to its full metadata, first 25 files, and an optional citation |
| List every version of a deposit's version series, newest first |
| Page a deposit's file manifest, or list the members of one of its |
| Read a byte-capped text excerpt of one file or |
| Resolve community, funder, grant, license, and resource-type names to the ids search filters take |
Related MCP server: @xbghc/zotero-mcp
Capability reference
zenodo_search_records tool
Keyword
query(terms OR-ed unless joined withAND, quoted phrases, field syntax such asmetadata.title:"…") plusresource_type,community,funder,award,creator_orcid,file_type,license,access_status, andpublished_from/published_toUp to 25 hits per page; only the first 10,000 matches are reachable (
result_window_exceededpast that); latest versions only unlessall_versionsis truesort:bestmatch,newest,oldest,mostviewed,mostdownloaded,updated-desc,updated-asc(defaultbestmatchwith a query,newestwithout)Each hit carries record and concept ids and DOIs, type, version, creators, license ids, access, file totals, and unique views and downloads;
facetscount resource types, access statuses, file types, subjects, and years over the full match setA bare DOI or record URL as
queryfails asquery_is_identifier; acommunityorfunderZenodo doesn't know fails asunknown_community/unknown_funder
zenodo_get_record tool
idtakes a record id, a Zenodo DOI, a concept DOI or concept record id (resolves to the latest version), another DOI registered to a Zenodo record, or a zenodo.org / doi.org URL;input_kindandresolved_fromreport how it resolvedReturns the description as plain text (up to 4,000 characters), creators and contributors with ORCIDs and ROR affiliations, rights, access and embargo, funding, related identifiers, communities, version position with
latest_recid, usage counts, and the first 25 filescitation_style:bibtex,csl-json,apa,chicago-author-date,harvard-cite-them-right,ieee,modern-language-association, ornatureA miss returns
found: falsewithmiss_kind(not_found,deleted,restricted,not_on_zenodo) andguidance; a deleted record adds its removaltombstone
zenodo_list_versions tool
Takes the same
idforms aszenodo_get_record; a concept DOI and any version's DOI list the same seriesNewest first, up to 25 per page; reports
total_versions,latest_recid, and the concept record id and DOIEach version carries its record id, DOI, version label, publication date,
index,is_latest, file totals, and unique views and downloadsMisses return
found: falsewith the samemiss_kind,guidance, andtombstoneaszenodo_get_record
zenodo_list_files tool
Manifest entries carry key, size, MIME type, MD5, download URL,
previewable, andlistable(a.zip); up to 200 per page viaoffset/limitarchive_keylists the members of one.zip; Zenodo lists at most 1,000 files and directories per archive, flagged byupstream_truncatedkey_containsfilters keys or member paths case-insensitively before pagingRestricted and embargoed files return the access status and embargo date with no entries; unknown and deleted records fail as
record_not_found/record_deleted
zenodo_read_file tool
keyfromzenodo_list_files, plusarchive_memberto read inside a.zipwithout downloading itmax_bytes256–65,536 (default 16,384); continue a top-level file fromnext_offset;.zipmembers read from byte 0 onlystatusistext,not_text,restricted, orempty; excerpts end on a line or character boundaryExtensionless files typed
application/octet-stream(LICENSE, Makefile) are returned only when their content is UTF-8 textEvery result carries the deposit's
rightsand thedownload_url
zenodo_lookup_vocabulary tool
vocabulary:communities,funders,awards,licenses, orresource_types;queryby name, acronym, or keyword, or omit it to browseEach entry's
filter_paramandfilter_valuename thezenodo_search_recordsfilter and the id to pass itfunderscopes awards to one funder, as a ROR id, ROR URL, or Crossref Funder DOIUp to 25 entries per page
Features
Built on @cyanheads/mcp-ts-core: stdio and Streamable HTTP transports, pluggable auth (none / jwt / oauth), swappable storage (in-memory, filesystem, Supabase, Cloudflare KV/R2/D1), structured logging with optional OpenTelemetry tracing.
Zenodo-specific:
Accepts a record id, Zenodo DOI, concept DOI, external DOI, or zenodo.org / doi.org URL in every tool that takes
id; URLs are parsed locally and never fetchedSearch filters compose into Zenodo's query, so facet counts agree with
total; community and funder values are checked before the search runsSeparate request pacers for Zenodo's search and general rate-limit buckets, backed by its
X-RateLimit-*headers, plus a process-local cache (records 5 min, searches 60 s, vocabularies 1 h)Byte-range file reads and
.zipmember reads, with binary detection before any text is returned
Agent-friendly output:
Misses as data:
zenodo_get_recordandzenodo_list_versionsreturnfound: falsewith a typedmiss_kind, next-stepguidance, and a deleted record's tombstoneDepositor-supplied text is labeled untrusted: descriptions render as quoted blocks, file content in a code fence, and HTML descriptions are converted to plain text
Search responses echo the
effectiveQuerysent to Zenodo and theappliedSort, and every paged tool reports totals with a next page or offsetFields Zenodo omits stay absent rather than defaulting to
0,'', orfalse
Getting started
Add the following to your MCP client configuration file.
{
"mcpServers": {
"zenodo-mcp-server": {
"type": "stdio",
"command": "bunx",
"args": ["@cyanheads/zenodo-mcp-server@latest"],
"env": {
"MCP_TRANSPORT_TYPE": "stdio",
"MCP_LOG_LEVEL": "info"
}
}
}
}Or with npx (no Bun required):
{
"mcpServers": {
"zenodo-mcp-server": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@cyanheads/zenodo-mcp-server@latest"],
"env": {
"MCP_TRANSPORT_TYPE": "stdio",
"MCP_LOG_LEVEL": "info"
}
}
}
}Or with Docker:
{
"mcpServers": {
"zenodo-mcp-server": {
"type": "stdio",
"command": "docker",
"args": ["run", "-i", "--rm", "-e", "MCP_TRANSPORT_TYPE=stdio", "ghcr.io/cyanheads/zenodo-mcp-server:latest"]
}
}
}To raise the rate limit, add "ZENODO_ACCESS_TOKEN": "your-token" to env (or -e ZENODO_ACCESS_TOKEN=… for Docker). See Configuration.
For Streamable HTTP, set the transport and start the server:
MCP_TRANSPORT_TYPE=http MCP_HTTP_PORT=3010 bun run start:http
# Server listens at http://localhost:3010/mcpPrerequisites
Bun v1.4.0 or higher (or Node.js v24+).
Optional: a Zenodo personal access token for a higher rate limit.
Installation
Clone the repository:
git clone https://github.com/cyanheads/zenodo-mcp-server.gitNavigate into the directory:
cd zenodo-mcp-serverInstall dependencies:
bun installConfigure environment:
cp .env.example .env
# optionally set ZENODO_ACCESS_TOKENConfiguration
Variable | Description | Default |
| Zenodo personal access token, created with no scopes. Raises Zenodo's rate limit; tool behavior and page sizes are unchanged. | none |
| Transport: |
|
| HTTP server port. |
|
| HTTP session mode: |
|
| Authentication: |
|
| Log level ( |
|
| Directory for log files (Node.js only). |
|
| Storage backend: |
|
| Enable OpenTelemetry. |
|
See .env.example for the full list of optional overrides.
Rate limits
Zenodo rate-limits anonymous clients per IP address: 60 requests per minute and 2,000 per hour overall, and 30 per minute on record search. The server paces its own requests below those limits: 25 searches per minute, and 55 other requests per minute and 1,900 per hour. Every caller of one server process shares that budget. When it runs out, tools fail with rate_limited and a retryAfter in seconds.
With ZENODO_ACCESS_TOKEN set, Zenodo allows 100 requests per minute and 5,000 per hour, and the server paces other requests at 90 per minute and 4,800 per hour. Search stays at 25 per minute.
The token authenticates as the account that created it, so reads can see what that account can see, including restricted records it owns. On a shared or hosted server, create the token on a dedicated account that owns no restricted records.
Running the server
Local development
Build and run the production version:
# One-time build bun run rebuild # Run the built server bun run start:http # or bun run start:stdioRun checks and tests:
bun run devcheck # Lints, formats, type-checks, and more bun run test # Runs the test suite
Docker
docker build -t zenodo-mcp-server .
docker run --rm -p 3010:3010 zenodo-mcp-serverThe Dockerfile defaults to HTTP transport, stateless session mode, and logs to /var/log/zenodo-mcp-server. OpenTelemetry peer dependencies are installed by default; build with --build-arg OTEL_ENABLED=false to omit them.
Project structure
Directory | Purpose |
|
|
| Server-specific environment variable parsing and validation with Zod. |
| Tool definitions ( |
| Zenodo service: HTTP boundary and pacers, cache, identifier parsing, query building, normalization, text previews. |
| Unit, service, tool, and fuzz tests against recorded Zenodo fixtures. |
| Tool surface design, verified upstream behavior, and decisions log. |
Development guide
See CLAUDE.md for development guidelines and architectural rules. The short version:
Handlers throw, framework catches — no
try/catchin tool logicUse
ctx.logfor logging; Zenodo responses are cached process-wide in the service, not inctx.stateRegister new tools in
src/mcp-server/tools/definitions/index.tsWrap external API calls: validate raw → normalize to domain type → return output schema; never fabricate missing fields
Contributing
Issues are welcome. Run checks and tests before submitting:
bun run devcheck
bun run testLicense
This project is licensed under the Apache 2.0 License. See the LICENSE file for details.
This server cannot be deployed
Maintenance
Related MCP Connectors
Agentic search over your Dewey document collections from any MCP-compatible client.
Zotero MCP server for Claude and ChatGPT: search, citations, safe writes, PDF passages and pages.
Search your AI chat history (ChatGPT, Claude, Codex) from any MCP client. Remote, private, read-only
Related MCP Servers
- AlicenseAqualityDmaintenanceA comprehensive MCP server for interacting with Zenodo records, enabling search, retrieval, citation generation, and file downloads.56Apache 2.0
- AlicenseAqualityDmaintenanceEnables querying, creating, and managing Zotero references via the MCP protocol.2286 npmMIT
- AlicenseNot gradedqualityBmaintenanceEnables searching Figshare research articles, datasets, papers, and posters through the MCP protocol.3 npmMIT
- AlicenseAqualityCmaintenanceAn MCP server for discovering, retrieving, citing, and evaluating scientific records from the Zenodo repository.18MIT