AI Agent Hub
Back to plugins
🧰

dsh-html-parse

Web Tools Updated 2026.08.19

Run the following command in DeepSeek Harness:

dsh plugin install uckkk/dsh-html-parse

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

Run dsh plugin install uckkk/dsh-html-parse in DeepSeek Harness to install; the full source repository is at https://github.com/uckkk/dsh-html-parse.

About this plugin

When working with web content, we often need to pull out what actually matters from a wall of HTML tags — titles, meta descriptions, links, tables, and body text. Hand-rolling regex is fragile, and bolting on a heavyweight parser feels overkill for the job.

dsh-html-parse collapses that into a single parse_html call. Feed it an HTML file path or a raw string, and it returns heading hierarchy, meta description, all links, table data, and plain text as structured output. The entire implementation is pure Node.js with no extra runtime dependencies, keeping it light and easy to audit.

If you use DeepSeek to process web-scraped results, build article summaries, extract tabular data, or simply want to pull structured information out of a chunk of HTML quickly, this plugin is a ready-made toolbox — install it and start calling the tool in your session with no extra configuration needed.

Use Cases

  • Extract titles, links, tables, and text from an HTML file or string in a single call
  • Pull meta descriptions and heading hierarchy from scraped pages for downstream analysis
  • Convert a raw HTML blob into structured fields within a conversation step

Best For

  • Developers who process web content with AI assistants
  • Teams that need lightweight HTML data extraction without heavy dependencies
  • Users who want to invoke HTML parsing directly inside a DeepSeek session