search_publications
Pack: dblp · Endpoint: https://gateway.pipeworx.io/dblp/mcp
Search DBLP publications. Match by title / author / year / venue. Default page size 30, max 1000.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | yes | Search term — title / author / DOI / venue |
hits | number | no | Results per page, 1-1000 (default 30) |
first | number | no | 0-based offset (default 0) |
Example call
curl -X POST https://gateway.pipeworx.io/dblp/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_publications","arguments":{}}}'
Response shape
| Field | Type | Description |
|---|---|---|
result | object |
Full JSON Schema
{
"type": "object",
"properties": {
"result": {
"type": "object",
"properties": {
"hits": {
"type": "number",
"description": "Total number of results matching the query"
},
"published": {
"type": "number",
"description": "Number of results in this response"
},
"start": {
"type": "number",
"description": "0-based offset of first result"
},
"completed": {
"type": "number",
"description": "Completion timestamp"
},
"hit": {
"type": "array",
"description": "Array of publication results",
"items": {
"type": "object",
"properties": {
"info": {
"type": "string",
"description": "Publication info string"
},
"url": {
"type": "string",
"description": "DBLP URL for the publication"
},
"title": {
"type": "string",
"description": "Publication title"
},
"authors": {
"type": "object",
"description": "Author information",
"properties": {
"author": {
"type": [
"array",
"object"
],
"description": "Author(s) name(s)"
}
}
},
"year": {
"type": "number",
"description": "Publication year"
},
"type": {
"type": "string",
"description": "Publication type (e.g., article, inproceedings)"
},
"venue": {
"type": "string",
"description": "Conference or journal name"
},
"doi": {
"type": "string",
"description": "DOI identifier"
},
"ee": {
"type": "string",
"description": "Electronic edition URL"
}
}
}
}
}
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"dblp": {
"url": "https://gateway.pipeworx.io/dblp/mcp"
}
}
}
See Getting Started for client-specific install steps.