collection
Pack: figshare · Endpoint: https://gateway.pipeworx.io/figshare/mcp
Fetch full metadata for a single Figshare collection by numeric id, including title, description, authors, DOI, and list of contained article ids.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | number | yes |
Example call
Arguments
{
"id": 9876543
}
curl
curl -X POST https://gateway.pipeworx.io/figshare/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"collection","arguments":{"id":9876543}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('collection', {
"id": 9876543
});
Response shape
| Field | Type | Description |
|---|---|---|
id | number | Collection ID |
title | string | Collection title |
doi | string | Digital Object Identifier |
handle | string | Figshare handle |
url | string | Collection URL |
published_date | string | Publication date |
description | string | Collection description |
articles | array | Articles in collection |
Full JSON Schema
{
"type": "object",
"description": "Single collection details",
"properties": {
"id": {
"type": "number",
"description": "Collection ID"
},
"title": {
"type": "string",
"description": "Collection title"
},
"doi": {
"type": "string",
"description": "Digital Object Identifier"
},
"handle": {
"type": "string",
"description": "Figshare handle"
},
"url": {
"type": "string",
"description": "Collection URL"
},
"published_date": {
"type": "string",
"description": "Publication date"
},
"description": {
"type": "string",
"description": "Collection description"
},
"articles": {
"type": "array",
"description": "Articles in collection",
"items": {
"type": "object",
"properties": {
"id": {
"type": "number",
"description": "Article ID"
},
"title": {
"type": "string",
"description": "Article title"
}
}
}
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"figshare": {
"url": "https://gateway.pipeworx.io/figshare/mcp"
}
}
}
See Getting Started for client-specific install steps.