get_work

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

Get full metadata for a publication by DOI (e.g., “10.1038/nature12373”). Returns title, authors, abstract, journal, publisher, citations, and subjects.

Parameters

NameTypeRequiredDescription
doistringyesDOI of the work (e.g., “10.1038/nature12373”)

Example call

Arguments

{
  "doi": "10.1038/nature12373"
}

curl

curl -X POST https://gateway.pipeworx.io/crossref/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_work","arguments":{"doi":"10.1038/nature12373"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('get_work', {
  "doi": "10.1038/nature12373"
});

Response shape

Always returns: doi, title, journal, authors, published, type, publisher, abstract, citations, subjects, url

FieldTypeDescription
doistringDigital Object Identifier
titlestring | nullWork title
journalstring | nullJournal or container title
authorsarrayList of author names
publishedstring | nullPublication date in YYYY-MM-DD format
typestring | nullWork type (e.g., journal-article, book)
publisherstring | nullPublisher name
abstractstring | nullWork abstract or summary
citationsnumber | nullNumber of citations referencing this work
subjectsarraySubject categories or keywords
urlstringURL to access the work
Full JSON Schema
{
  "type": "object",
  "properties": {
    "doi": {
      "type": "string",
      "description": "Digital Object Identifier"
    },
    "title": {
      "type": [
        "string",
        "null"
      ],
      "description": "Work title"
    },
    "journal": {
      "type": [
        "string",
        "null"
      ],
      "description": "Journal or container title"
    },
    "authors": {
      "type": "array",
      "description": "List of author names",
      "items": {
        "type": "string"
      }
    },
    "published": {
      "type": [
        "string",
        "null"
      ],
      "description": "Publication date in YYYY-MM-DD format"
    },
    "type": {
      "type": [
        "string",
        "null"
      ],
      "description": "Work type (e.g., journal-article, book)"
    },
    "publisher": {
      "type": [
        "string",
        "null"
      ],
      "description": "Publisher name"
    },
    "abstract": {
      "type": [
        "string",
        "null"
      ],
      "description": "Work abstract or summary"
    },
    "citations": {
      "type": [
        "number",
        "null"
      ],
      "description": "Number of citations referencing this work"
    },
    "subjects": {
      "type": "array",
      "description": "Subject categories or keywords",
      "items": {
        "type": "string"
      }
    },
    "url": {
      "type": "string",
      "description": "URL to access the work"
    }
  },
  "required": [
    "doi",
    "title",
    "journal",
    "authors",
    "published",
    "type",
    "publisher",
    "abstract",
    "citations",
    "subjects",
    "url"
  ]
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "crossref": {
      "url": "https://gateway.pipeworx.io/crossref/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build May 9, 2026