Skip to main content
Glama
timothybroome

Fastidious MCP Server

search_notes

Find notes by matching query text against their content, and optionally narrow results to a specific collection for targeted lookups.

Instructions

Search notes by content

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
queryYesSearch query to match against note content
parentIdNoOptional: Limit search to a specific collection

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.9/5.0
Behavior2/5

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

With no annotations provided, the description carries the full burden and discloses almost nothing about behavior: no mention of match semantics (substring vs tokenized), case sensitivity, result ordering, or result limits/pagination. For a search tool with zero annotation coverage this is a notable gap.

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

Conciseness4/5

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

A single front-loaded phrase with no wasted words; the core action leads. It is arguably under-specified rather than verbose, so it scores well on conciseness but not perfectly.

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

Completeness2/5

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

No output schema and no annotations, so the description must carry behavioral context itself; it omits return format, ordering, and result limits. For a search tool intended to be picked over list_notes, this is incomplete.

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 100%, so both query and parentId are already documented in the schema, which sets the baseline at 3. The description adds no extra meaning beyond 'by content', so it does not rise above the baseline.

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

Purpose4/5

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

States a specific verb (search) and resource (notes) with the matched field (content), so the core action is unambiguous. However, it offers no differentiation from the sibling list_notes, which an agent could easily confuse with a broad content search.

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?

No indication of when to use this tool versus list_notes or get_note, and no mention of whether it is for full-text lookup versus exact matching. The agent is left to infer the scenario entirely.

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