MCP-DBLP

by szeider
Verified

export_bibtex

Export BibTeX entries from a collection of HTML hyperlinks. Arguments:

  • links (string, required): HTML string containing one or more <a href=biburl>key</a> links. The href attribute should contain a URL to a BibTeX file, and the link text is used as the citation key. Example input with three links: "<a href=https://dblp.org/rec/journals/example1.bib>Smith2023</a> <a href=https://dblp.org/rec/conf/example2.bib>Jones2022</a> <a href=https://dblp.org/rec/journals/example3.bib>Brown2021</a>" Process:
  • For each link, the tool fetches the BibTeX content from the URL
  • The citation key in each BibTeX entry is replaced with the key from the link text
  • All entries are combined and saved to a .bib file with a timestamp filename Returns:
  • A message with the full path to the saved .bib file

Input Schema

NameRequiredDescriptionDefault
linksYes

Input Schema (JSON Schema)

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