search_venues
Pack: dblp · Endpoint: https://gateway.pipeworx.io/dblp/mcp
Search DBLP venues (conferences + journals).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | yes | Venue name or acronym (e.g. “ICLR”, “Nature”) |
hits | number | no | 1-1000 (default 30) |
first | number | no | 0-based offset |
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_venues","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 venue results"
},
"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 venue results",
"items": {
"type": "object",
"properties": {
"info": {
"type": "string",
"description": "Venue info string"
},
"url": {
"type": "string",
"description": "DBLP venue page URL"
},
"name": {
"type": "string",
"description": "Venue full name"
},
"acronym": {
"type": "string",
"description": "Venue acronym if available"
}
}
}
}
}
}
}
}
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.