MCP-DBLP

by szeider
Verified

get_author_publications

Retrieve publication details for a specific author with fuzzy matching. Arguments:

  • author_name (string, required): Full or partial author name (case-insensitive).
  • similarity_threshold (number, required): A float between 0 and 1 where 1.0 means an exact match.
  • max_results (number, optional): Maximum number of publications to return. Default is 20.
  • include_bibtex (boolean, optional): Whether to include BibTeX entries in the results. Default is false. Returns a dictionary with keys: name, publication_count, publications, and stats (which includes top venues, years, and types).

Input Schema

NameRequiredDescriptionDefault
author_nameYes
include_bibtexNo
max_resultsNo
similarity_thresholdYes

Input Schema (JSON Schema)

{ "properties": { "author_name": { "type": "string" }, "include_bibtex": { "type": "boolean" }, "max_results": { "type": "number" }, "similarity_threshold": { "type": "number" } }, "required": [ "author_name", "similarity_threshold" ], "type": "object" }