get_article
Pack: doaj · Endpoint: https://gateway.pipeworx.io/doaj/mcp
Fetch an article by DOAJ id.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | string | yes | DOAJ article 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_article","arguments":{}}}'
Response shape
| Field | Type | Description |
|---|---|---|
id | string | DOAJ article ID |
title | string | Article title |
abstract | string | Article abstract |
author | array | List of authors |
journal | string | Journal title |
year | number | Publication year |
created_date | string | Creation date |
url | string | Article URL |
Full JSON Schema
{
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "DOAJ article ID"
},
"title": {
"type": "string",
"description": "Article title"
},
"abstract": {
"type": "string",
"description": "Article abstract"
},
"author": {
"type": "array",
"description": "List of authors",
"items": {
"type": "string"
}
},
"journal": {
"type": "string",
"description": "Journal title"
},
"year": {
"type": "number",
"description": "Publication year"
},
"created_date": {
"type": "string",
"description": "Creation date"
},
"url": {
"type": "string",
"description": "Article 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.