QMD Markdown Search

ReviewAudited by ClawScan on May 10, 2026.

Overview

This is a coherent local Markdown search skill, but it relies on an external CLI and can index or retrieve private notes, so it should be configured carefully.

Install qmd only if you trust the external CLI. Add only the Markdown folders you want the agent to search, avoid indexing secrets or confidential notes, verify whether LLM reranking sends data to a provider, and run the MCP server only for trusted clients.

Findings (4)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

The skill itself is instruction-only, but using it requires trusting the external qmd package that will read and index local files.

Why it was flagged

The skill depends on installing an external GitHub-hosted CLI globally, and that CLI code is not included in the reviewed artifact set.

Skill content
bun install -g https://github.com/tobi/qmd
Recommendation

Install qmd only from a trusted source, consider pinning or reviewing the repository version, and avoid running it in highly sensitive directories until verified.

What this means

Private notes, documentation, or meeting transcripts may become easy for the agent to retrieve into context, including any sensitive or misleading content in those files.

Why it was flagged

The setup creates a searchable local collection and embeddings from Markdown files, which can persist and be reused in later searches.

Skill content
qmd collection add ~/notes --name notes --mask "**/*.md"
qmd embed
Recommendation

Index only folders intended for agent use, exclude secrets or confidential notes, and understand where qmd stores its index and embeddings.

What this means

If qmd uses a remote model provider, queries or document snippets from local Markdown collections could be included in model requests.

Why it was flagged

The skill documents LLM-assisted reranking, but the artifacts do not specify whether that LLM processing is local or uses an external provider.

Skill content
query (hybrid with LLM re-ranking - best quality)
Recommendation

Verify qmd's LLM configuration and provider behavior before using `qmd query` on confidential knowledge bases.

What this means

A connected client could search or retrieve indexed Markdown content through the MCP tools.

Why it was flagged

Running the MCP server can expose local search and retrieval tools to connected MCP clients.

Skill content
qmd can run as an MCP server for direct integration:

```bash
qmd mcp
```

Exposes tools: `qmd_search`, `qmd_vsearch`, `qmd_query`, `qmd_get`, `qmd_multi_get`, `qmd_status`
Recommendation

Run the MCP server only for trusted local clients and with collections limited to content you are comfortable exposing to the agent.