AI Agent Hub
Back to plugins
🧰

dsh-literature-search

Web Tools Updated 2026.09.14

Run the following command in DeepSeek Harness:

dsh plugin install Astervolans/dsh-literature-search

Paste the following prompt into your AI chat to install this plugin:

Run dsh plugin install Astervolans/dsh-literature-search in your terminal; the full source is at https://github.com/Astervolans/dsh-literature-search . Restart DSH afterwards so the new tools load.

About this plugin

Running a literature search inside DSH means dealing with two very different upstreams: PubMed's official E-utilities chain (esearch, esummary, efetch, elink) and Google Scholar, which offers no official API and punishes raw HTML scraping with 429 responses. Stitching together the calls, parsing heterogeneous responses, and babysitting rate limits are engineering chores that steal time from the actual reading and synthesis.

dsh-literature-search collapses both paths into five tools — pubmed_search, pubmed_paper, pubmed_related, scholar_search, and scholar_cite — that return a unified paper shape covering title, authors, journal, DOI, MeSH terms, abstract, citation count, and PDF link. PubMed calls go through the free, stable E-utilities API; Scholar calls prefer SerpApi and fall back to HTML parsing only when no key is present, failing loudly rather than silently returning empty results. The plugin ships with zero runtime dependencies, relying solely on Node's built-in fetch.

A dedicated settings card in the DSH panel lets you manage NCBI and SerpApi keys, switch the Scholar backend, tune rate limits and result caps, and run a one-click connectivity probe. Credentials are written through the DSH credential service, keeping them out of committed config files. The plugin is well suited for researchers, grad students, and anyone embedding literature search, abstract extraction, related-paper discovery, and citation formatting (MLA, APA, Chicago, Harvard, Vancouver, BibTeX) into a DSH conversational workflow.

Use Cases

  • Search biomedical literature and retrieve structured metadata with MeSH terms and abstracts
  • Discover related papers around a core reference to build a literature network
  • Export search results into BibTeX, APA, Vancouver, or other citation formats in one step

Best For

  • Grad students and postdocs who need fast literature reviews
  • Developers embedding retrieval into DSH-based academic workflows
  • Researchers who cross-validate findings across PubMed and Google Scholar