recent

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

Most recent publications across PLOS.

Parameters

NameTypeRequiredDescription
rowsnumberno

Example call

Arguments

{
  "rows": 25
}

curl

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

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('recent', {
  "rows": 25
});

Response shape

FieldTypeDescription
responseHeaderobjectResponse metadata from Solr
responseobject
Full JSON Schema
{
  "type": "object",
  "properties": {
    "responseHeader": {
      "type": "object",
      "description": "Response metadata from Solr"
    },
    "response": {
      "type": "object",
      "properties": {
        "numFound": {
          "type": "number",
          "description": "Total number of matching documents"
        },
        "start": {
          "type": "number",
          "description": "Starting position of results"
        },
        "docs": {
          "type": "array",
          "description": "Array of article documents",
          "items": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "Article DOI"
              },
              "journal": {
                "type": "string",
                "description": "Journal name"
              },
              "publication_date": {
                "type": "string",
                "description": "Publication date"
              },
              "title": {
                "type": "string",
                "description": "Article title"
              },
              "author_display": {
                "type": "array",
                "description": "List of authors",
                "items": {
                  "type": "string"
                }
              }
            }
          }
        }
      }
    }
  }
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026