get_journal
Pack: doaj · Endpoint: https://gateway.pipeworx.io/doaj/mcp
Fetch a journal by DOAJ id.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | string | yes | DOAJ 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
| Field | Type | Description |
|---|---|---|
id | string | DOAJ journal ID |
title | string | Journal title |
issn | array | ISSN numbers |
publisher | string | Publisher name |
created_date | string | Creation date |
url | string | Journal 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.