search_venues

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

Search DBLP venues (conferences + journals).

Parameters

NameTypeRequiredDescription
querystringyesVenue name or acronym (e.g. “ICLR”, “Nature”)
hitsnumberno1-1000 (default 30)
firstnumberno0-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

FieldTypeDescription
resultobject
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.

Regenerated from source · build May 21, 2026