search

Pack: zenodo · Endpoint: https://gateway.pipeworx.io/zenodo/mcp

Search Zenodo open-research repository for datasets, publications, software, and other research outputs by keyword query. Filterable by type, community, and sort order (mostrecent/bestmatch/mostviewed); returns metadata, DOI, and file links.

Parameters

NameTypeRequiredDescription
querystringyes
typestringnodataset | publication | software | presentation | poster | image | video | other
communitiesstringnoComma-sep community ids.
sortstringnomostrecent | bestmatch | mostviewed
pagenumberno
sizenumberno

Example call

Arguments

{
  "query": "climate change data"
}

curl

curl -X POST https://gateway.pipeworx.io/zenodo/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search","arguments":{"query":"climate change data"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('search', {
  "query": "climate change data"
});

More examples

{
  "query": "machine learning",
  "type": "dataset",
  "sort": "mostrecent",
  "page": 1,
  "size": 20
}

Response shape

Full JSON Schema
{
  "type": "object",
  "description": "Search results from Zenodo API"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "zenodo": {
      "url": "https://gateway.pipeworx.io/zenodo/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026