AI Agent Hub
Back to plugins
🧰

dsh-mime

Web Tools Updated 2026.08.19

Run the following command in DeepSeek Harness:

dsh plugin install uckkk/dsh-mime

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

Run dsh plugin install uckkk/dsh-mime in DeepSeek Harness to install this plugin; source is available at https://github.com/uckkk/dsh-mime .

About this plugin

In everyday development—whether configuring Content-Type headers, handling file uploads, or processing email attachments—you often need to quickly confirm which MIME type maps to a given file extension. dsh-mime exists for exactly this: it bundles a complete MIME type table into a pure Node.js plugin, so a single call returns the answer with zero network requests and no external service dependency.

This means the plugin works entirely offline. Inside a corporate intranet, a CI pipeline, or any network-restricted environment, you can still get accurate type/subtype values in milliseconds—no third-party API quota, no DNS resolution, no timeout risk. Everything runs in-process on your local Node runtime.

Who is it for? Any front-end, back-end, or full-stack developer who frequently needs to look up MIME mappings while coding, especially in workflows where network isolation is a hard requirement or where response latency matters. Once installed, simply invoke the registered tool in your session—no extra configuration needed.

Use Cases

  • Quickly verifying MIME types for file extensions when setting Content-Type headers
  • Looking up MIME mappings in network-restricted or intranet environments
  • Getting accurate type/subtype values instantly for email attachments or file uploads

Best For

  • Front-end and back-end developers who deal with file type mappings frequently
  • Engineers working in intranets or CI pipelines that require offline dependencies
  • Automated workflows sensitive to API quotas and network latency