get_article

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

Fetch an article by DOAJ id.

Parameters

NameTypeRequiredDescription
idstringyesDOAJ 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

FieldTypeDescription
idstringDOAJ article ID
titlestringArticle title
abstractstringArticle abstract
authorarrayList of authors
journalstringJournal title
yearnumberPublication year
created_datestringCreation date
urlstringArticle 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.

Regenerated from source · build May 21, 2026