dataset

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

Full metadata for one PANGAEA dataset by its numeric ID (e.g. 921708).

Parameters

NameTypeRequiredDescription
idnumberyesPANGAEA dataset ID, e.g. 921708.

Example call

Arguments

{
  "id": 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","arguments":{"id":823127}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('dataset', {
  "id": 823127
});

Response shape

FieldTypeDescription
tooknumber
timed_outboolean
_shardsobject
hitsobject
Full JSON Schema
{
  "type": "object",
  "description": "Single dataset metadata by PANGAEA ID",
  "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