recent

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

Most recently published PANGAEA datasets (newest DOI registrations first).

Parameters

NameTypeRequiredDescription
sizenumbernoHow many (default 20, max 50).
daysnumbernoOnly datasets registered within the last N days (optional).

Example call

Arguments

{
  "size": 10,
  "days": 30
}

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":"recent","arguments":{"size":10,"days":30}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('recent', {
  "size": 10,
  "days": 30
});

Response shape

FieldTypeDescription
tooknumber
timed_outboolean
_shardsobject
hitsobject
Full JSON Schema
{
  "type": "object",
  "description": "Recently published datasets within specified timeframe",
  "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