Figshare

liveResearchScience

Figshare open research repository — search 7M+ papers, datasets, posters, code, and theses; retrieve articles, files, and collections.

7tools
0msauth
free tier50 calls/day

Tools

articles

Papers, datasets, posters and code on figshare, the open-research repository.

No parameters required.

Try it
article

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.

No parameters required.

Try it
article_files

List 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.

Try it
collections

Search 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.

Try it
collection

Fetch full metadata for a single Figshare collection by numeric id, including title, description, authors, DOI, and list of contained article ids.

No parameters required.

Try it
categories

List Figshare categories (parent → leaves).

No parameters required.

Try it
licenses

List Figshare license options (id, name, url).

No parameters required.

Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/figshare/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
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":{}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("articles", {});
ask_pipeworx
// 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");