article

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

Fetch full metadata for a single Figshare article by numeric id, optionally at a specific version. Returns title, authors, description, DOI, license, categories, and file list.

Parameters

NameTypeRequiredDescription
idnumberyes
versionnumberno

Example call

Arguments

{
  "id": 1234567
}

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

TypeScript (@pipeworx/sdk)

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

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

More examples

{
  "id": 1234567,
  "version": 2
}

Response shape

FieldTypeDescription
idnumberArticle ID
titlestringArticle title
doistringDigital Object Identifier
handlestringFigshare handle
urlstringArticle URL
published_datestringPublication date
modified_datestringLast modified date
descriptionstringArticle description
is_publicbooleanPublic visibility
viewsnumberView count
downloadsnumberDownload count
sharesnumberShare count
citesnumberCitation count
authorsarrayList of authors
tagsarrayArticle tags
categoriesarrayArticle categories
Full JSON Schema
{
  "type": "object",
  "description": "Single article details",
  "properties": {
    "id": {
      "type": "number",
      "description": "Article ID"
    },
    "title": {
      "type": "string",
      "description": "Article title"
    },
    "doi": {
      "type": "string",
      "description": "Digital Object Identifier"
    },
    "handle": {
      "type": "string",
      "description": "Figshare handle"
    },
    "url": {
      "type": "string",
      "description": "Article URL"
    },
    "published_date": {
      "type": "string",
      "description": "Publication date"
    },
    "modified_date": {
      "type": "string",
      "description": "Last modified date"
    },
    "description": {
      "type": "string",
      "description": "Article description"
    },
    "is_public": {
      "type": "boolean",
      "description": "Public visibility"
    },
    "views": {
      "type": "number",
      "description": "View count"
    },
    "downloads": {
      "type": "number",
      "description": "Download count"
    },
    "shares": {
      "type": "number",
      "description": "Share count"
    },
    "cites": {
      "type": "number",
      "description": "Citation count"
    },
    "authors": {
      "type": "array",
      "description": "List of authors",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "number",
            "description": "Author ID"
          },
          "name": {
            "type": "string",
            "description": "Author name"
          },
          "orcid_id": {
            "type": "string",
            "description": "ORCID identifier"
          }
        }
      }
    },
    "tags": {
      "type": "array",
      "description": "Article tags",
      "items": {
        "type": "string"
      }
    },
    "categories": {
      "type": "array",
      "description": "Article categories",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "number",
            "description": "Category ID"
          },
          "title": {
            "type": "string",
            "description": "Category name"
          }
        }
      }
    }
  }
}

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