get_journal
Pack: crossref · Endpoint: https://gateway.pipeworx.io/crossref/mcp
Get the 5 most recent works from a journal by ISSN (e.g., “2041-1723”). Returns titles, authors, DOIs, and publication dates.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
issn | string | yes | Journal ISSN (e.g., “1476-4687” for Nature) |
Example call
Arguments
{
"issn": "1476-4687"
}
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_journal","arguments":{"issn":"1476-4687"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_journal', {
"issn": "1476-4687"
});
Response shape
Always returns: issn, total_results, recent_works
| Field | Type | Description |
|---|---|---|
issn | string | Journal ISSN |
total_results | number | Total number of works in the journal |
recent_works | array | Array of recent works from the journal |
Full JSON Schema
{
"type": "object",
"properties": {
"issn": {
"type": "string",
"description": "Journal ISSN"
},
"total_results": {
"type": "number",
"description": "Total number of works in the journal"
},
"recent_works": {
"type": "array",
"description": "Array of recent works from the journal",
"items": {
"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"
]
}
}
},
"required": [
"issn",
"total_results",
"recent_works"
]
}
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.