AI Agent Hub
Back to plugins
🧰

dsh-http-uckkk

Web Tools Updated 2026.08.19

Run the following command in DeepSeek Harness:

dsh plugin install uckkk/dsh-http-uckkk

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

Run dsh plugin install uckkk/dsh-http-uckkk in your DeepSeek Harness environment; the full source code is available at https://github.com/uckkk/dsh-http-uckkk

About this plugin

When you are debugging APIs inside a DeepSeek Harness session, the most context-breaking move is hopping to a terminal for curl, staring at the output, and jumping back. dsh-http removes that round trip: it wraps a full HTTP request into a single in-session tool call, handing you the status code, response headers, a truncated body, and elapsed time right where your conversation is.

The plugin exposes exactly one tool, http_request, built entirely on Node's native fetch with zero extra dependencies and no complex configuration surface. Response bodies are automatically truncated so they do not flood the context window, while the measured duration helps you tell apart a network blip from a slow endpoint. The implementation is small, transparent, and MIT-licensed, so reading the source is a matter of seconds.

It is a good fit for developers who are poking at backend endpoints, verifying third-party API behavior, or simply want to confirm what a URL returns without leaving the chat. No scripts to write, no browser dev-tools to open — one natural-language sentence in the session gets you a clean, structured response.

Use Cases

  • Quickly verify API endpoint status codes and response structure in-session
  • Inspect response headers and latency when a third-party API misbehaves
  • Send test requests during debugging without leaving the chat

Best For

  • Developers debugging backend or third-party APIs
  • Engineers who want fewer context switches mid-conversation
  • Technicians needing a quick endpoint check without writing scripts