get_journal

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

Fetch a journal by DOAJ id.

Parameters

NameTypeRequiredDescription
idstringyesDOAJ journal id

Example call

Arguments

{
  "id": "3a9b2c1e5f7d8e4a6b9c1d2e3f4a5b6c"
}

curl

curl -X POST https://gateway.pipeworx.io/doaj/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_journal","arguments":{"id":"3a9b2c1e5f7d8e4a6b9c1d2e3f4a5b6c"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('get_journal', {
  "id": "3a9b2c1e5f7d8e4a6b9c1d2e3f4a5b6c"
});

Response shape

FieldTypeDescription
idstringDOAJ journal ID
titlestringJournal title
issnarrayISSN numbers
publisherstringPublisher name
created_datestringCreation date
urlstringJournal URL
Full JSON Schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "DOAJ journal ID"
    },
    "title": {
      "type": "string",
      "description": "Journal title"
    },
    "issn": {
      "type": "array",
      "description": "ISSN numbers",
      "items": {
        "type": "string"
      }
    },
    "publisher": {
      "type": "string",
      "description": "Publisher name"
    },
    "created_date": {
      "type": "string",
      "description": "Creation date"
    },
    "url": {
      "type": "string",
      "description": "Journal URL"
    }
  }
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026