Loading connector details…
Loading connector details…
Choose a unique username to continue using AgentHotspot
by szeider • Search & Retrieval
An MCP server that integrates DBLP database access for Large Language Models.
Search and retrieve academic publications from the DBLP database.
Process and export BibTeX entries directly from DBLP.
Perform fuzzy matching on publication titles and author names.
The MCP-DBLP server integrates the DBLP API with Large Language Models via the Model Context Protocol, enabling advanced academic publication searches, citation processing, and BibTeX generation directly from the DBLP computer science bibliography database. This server allows for fuzzy matching on titles and authors, publication data analysis, and direct BibTeX export for accuracy and trustworthiness, avoiding LLM-induced errors.
Get detailed DBLP usage instructions. Key points: - Batch searches in parallel (5-10 at a time) for efficiency - Add entries immediately after each search result (don't batch add_bibtex_entry calls) - Use author+year for best results: search('Vaswani 2017') not just title - Copy dblp_key EXACTLY from search results to add_bibtex_entry - Export once at the end with export_bibtex Call this tool for complete workflow details, search strategies, and examples.
Search DBLP for publications using a boolean query string. Arguments: - query (string, required): A query string that may include boolean operators 'and' and 'or' (case-insensitive). For example, 'Swin and Transformer'. Parentheses are not supported. - max_results (number, optional): Maximum number of publications to return. Default is 10. - year_from (number, optional): Lower bound for publication year. - year_to (number, optional): Upper bound for publication year. - venue_filter (string, optional): Case-insensitive substring filter for publication venues (e.g., 'iclr'). - include_bibtex (boolean, optional): Whether to include BibTeX entries in the results. Default is false. Returns a list of publication objects including title, authors, venue, year, type, doi, ee, and url.
Search DBLP for publications with fuzzy title matching. Arguments: - title (string, required): Full or partial title of the publication (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 10. - year_from (number, optional): Lower bound for publication year. - year_to (number, optional): Upper bound for publication year. - venue_filter (string, optional): Case-insensitive substring filter for publication venues. - include_bibtex (boolean, optional): Whether to include BibTeX entries in the results. Default is false. Returns a list of publication objects sorted by title similarity score.
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).
Retrieve information about a publication venue from DBLP. Arguments: - venue_name (string, required): Venue name or abbreviation (e.g., 'ICLR', 'NeurIPS', or full name). Returns a dictionary with fields: - venue: Full venue title - acronym: Venue acronym/abbreviation (if available) - type: Venue type (e.g., 'Conference or Workshop', 'Journal', 'Repository') - url: Canonical DBLP URL for the venue Note: Publisher, ISSN, and other metadata are not available through this endpoint.
Scores are informational only and provided “as is” without warranty. AgentHotspot assumes no liability for actions taken based on these ratings.