search_authored_by
Pack: plos · Endpoint: https://gateway.pipeworx.io/plos/mcp
Articles by author name.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
name | string | yes | |
rows | number | no |
Example call
Arguments
{
"name": "Jennifer Smith"
}
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":"search_authored_by","arguments":{"name":"Jennifer Smith"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('search_authored_by', {
"name": "Jennifer Smith"
});
More examples
{
"name": "Robert Chen",
"rows": 50
}
Response shape
| Field | Type | Description |
|---|---|---|
responseHeader | object | Response metadata from Solr |
response | object |
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.