dataset_by_doi

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

Full metadata for one PANGAEA dataset by DOI (e.g. “10.1594/PANGAEA.921708” or the doi.org URL).

Parameters

NameTypeRequiredDescription
doistringyesPANGAEA DOI, e.g. “10.1594/PANGAEA.921708”.

Example call

Arguments

{
  "doi": "10.1594/PANGAEA.823127"
}

curl

curl -X POST https://gateway.pipeworx.io/pangaea/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"dataset_by_doi","arguments":{"doi":"10.1594/PANGAEA.823127"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('dataset_by_doi', {
  "doi": "10.1594/PANGAEA.823127"
});

Response shape

FieldTypeDescription
tooknumber
timed_outboolean
_shardsobject
hitsobject
Full JSON Schema
{
  "type": "object",
  "description": "Dataset metadata by DOI",
  "properties": {
    "took": {
      "type": "number"
    },
    "timed_out": {
      "type": "boolean"
    },
    "_shards": {
      "type": "object"
    },
    "hits": {
      "type": "object",
      "properties": {
        "total": {
          "type": "object"
        },
        "max_score": {
          "type": [
            "number",
            "null"
          ]
        },
        "hits": {
          "type": "array",
          "items": {
            "type": "object"
          }
        }
      }
    }
  }
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build July 8, 2026