recent
Pack: pangaea · Endpoint: https://gateway.pipeworx.io/pangaea/mcp
Most recently published PANGAEA datasets (newest DOI registrations first).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
size | number | no | How many (default 20, max 50). |
days | number | no | Only 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
| Field | Type | Description |
|---|---|---|
took | number | |
timed_out | boolean | |
_shards | object | |
hits | object |
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.