AI Agent Hub
Back to plugins
🧰

dsh-json-query

Web Tools Updated 2026.08.19

Run the following command in DeepSeek Harness:

dsh plugin install uckkk/dsh-json-query

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

Run dsh plugin install uckkk/dsh-json-query in your terminal to install; the complete source code is available at https://github.com/uckkk/dsh-json-query .

About this plugin

Taming deeply nested JSON is tedious and error-prone, especially when you need to repeatedly read or mutate a specific node during a session. dsh-json-query solves exactly that: it exposes a JSON Pointer-based query and set interface so a single path expression can target any level of your data without mentally unwinding the entire object.

The plugin is a pure-Node implementation that runs entirely offline. It makes no network calls and depends on no external services, so its behavior is deterministic, latency is minimal, and your data never leaves your machine. Two core operations—query (read) and set (write)—cover the vast majority of everyday field-level JSON tasks, staying lightweight yet practical.

It is ideal for developers and data engineers who frequently manipulate JSON structures inside a local session: debugging API responses, tweaking nested config files, or performing quick field-level reads and writes on collected structured data—all with less boilerplate and fewer path mistakes. Released under the MIT license with fully transparent source code.

Use Cases

  • Quick read/write of nested fields in API responses
  • Modifying deep-nested values in local JSON config files
  • Field-level extraction and updates on structured data during a session

Best For

  • Developers who frequently manipulate nested JSON
  • Data engineers needing offline structured data processing
  • Users who prefer lightweight, network-free toolchains