Skip to main content
Glama
omd-local

omd-mcp

by omd-local

search_memory

Search Markdown notes in an allowed local vault by query. Returns relative paths, deterministic lexical scores, and bounded evidence snippets.

Instructions

Search Markdown notes under an allowed local vault root. Returns relative paths, deterministic lexical scores, and bounded untrusted evidence snippets.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo
queryYesLocal lexical search query.
vaultYesAllowed local vault directory to search.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.8/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden and does useful work: it discloses that results are relative paths, deterministic lexical scores, and bounded untrusted evidence snippets. It does not cover permissions beyond the 'allowed vault root' constraint, failure modes, or pagination behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two tightly written sentences with the scope constraint front-loaded and zero redundant restatement of the tool name.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a three-parameter read tool with no annotations and no output schema, the description covers return shape and scope adequately; the only real gap is the undocumented limit parameter and error/permission behavior.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 67% (query and vault documented, limit undescribed). The description reinforces the vault constraint ('allowed local vault root') and the lexical nature of query, but adds nothing about the limit parameter or score/path formats beyond the schema. Baseline 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific verb (Search) and resource (Markdown notes) bounded by scope (under an allowed local vault root), which is unambiguous and clearly distinct from convert/inspect/capture/list siblings that do not search note content.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

There is no when-to-use or when-not-to-use guidance, no prerequisites, and no routing to or away from siblings such as inspect_source. Usage is only inferable from the verb itself.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.