MCP-DBLP

by szeider
Verified

get_author_publications

Retrieve detailed publication data for an author using partial or full name matching and adjustable similarity thresholds. Supports BibTeX inclusion and limits results to specified counts for efficient querying.

Instructions

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" }

You must be authenticated.

Other Tools from MCP-DBLP

Related Tools

ID: cm42scf3iv