articleFetch 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.
No parameters required.
Try it
Figshare open research repository — search 7M+ papers, datasets, posters, code, and theses; retrieve articles, files, and collections.
articlesPapers, datasets, posters and code on figshare, the open-research repository.
No parameters required.
articleFetch 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.
No parameters required.
article_filesList downloadable files attached to a Figshare article by numeric id (optionally a specific version). Returns file names, sizes, MIME types, and direct download URLs.
No parameters required.
collectionsSearch Figshare collections (curated groups of articles) by keyword query; supports pagination via page/page_size. Returns collection id, title, description, and article count.
No parameters required.
collectionFetch full metadata for a single Figshare collection by numeric id, including title, description, authors, DOI, and list of contained article ids.
No parameters required.
categoriesList Figshare categories (parent → leaves).
No parameters required.
licensesList Figshare license options (id, name, url).
No parameters required.
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
curl -X POST https://gateway.pipeworx.io/figshare/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'curl -X POST https://gateway.pipeworx.io/figshare/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"articles","arguments":{}}}'Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("articles", {});// Or ask in plain English:
const answer = await px.ask("figshare open research repository — search 7m+ papers, datasets, posters, code, and theses; retrieve articles, files, and collections");