get_journal

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

Fetch a journal by DOAJ id.

Parameters

NameTypeRequiredDescription
idstringyesDOAJ journal id

Example call

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":{}}}'

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 May 21, 2026