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

NameTypeRequiredDescription
idnumberyes

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

FieldTypeDescription
idnumberCollection ID
titlestringCollection title
doistringDigital Object Identifier
handlestringFigshare handle
urlstringCollection URL
published_datestringPublication date
descriptionstringCollection description
articlesarrayArticles 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.

Regenerated from source · build July 6, 2026