MCP-DBLP

by szeider
Verified

get_venue_info

Retrieve detailed information about a publication venue. Arguments:

  • venue_name (string, required): Venue name or abbreviation (e.g., 'ICLR' or full name). Returns a dictionary with fields: abbreviation, name, publisher, type, and category. Note: Some fields may be empty if DBLP does not provide the information.

Input Schema

NameRequiredDescriptionDefault
venue_nameYes

Input Schema (JSON Schema)

{ "properties": { "venue_name": { "type": "string" } }, "required": [ "venue_name" ], "type": "object" }