Skip to main content
Glama
praxisgaurdrails

Praxis Lite

Official

fs_search

Find files on your disk by filename with fuzzy matching and ranked results. Narrow by directory or extension.

Instructions

Search the user's disk by filename (v1 filename fuzzy).

Returns a ranked list of file paths whose name matches the query. Ranking blends fuzzy match, recency, and a directory prior — so files in ~/Documents outrank equivalents in ~/Library/Caches.

Args: query: The text the user is looking for. Case-insensitive. Synonyms are auto-expanded (resume also matches cv, passport matches id, etc.). paths: Optional list of directories to search under. Empty = search the user's home directory. ext: Optional extension filter, e.g. "pdf". limit: Max hits to return (default 10).

Returns: result.hits is a list of {path, score, matched_query} dicts sorted best-first.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
extNo
limitNo
pathsNo
queryYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.2

TDQS

A4.8/5.0
Behavior5/5

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

With no annotations, the description carries the full burden, and it delivers: it discloses fuzzy matching, case-insensitivity, synonym expansion, ranking factors (fuzzy match, recency, directory prior), directory prior examples, and the structure of returned hits. This is substantially more transparent than typical tool descriptions.

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?

The description is well-structured with an intro, ranking explanation, Args section, and Returns section. Every sentence adds information; the ranking example ('Documents outrank Library/Caches') is illustrative without being verbose.

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

Completeness5/5

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

For a search tool with four parameters, the description covers input semantics, default behavior, ranking behavior, and the exact return shape. Even with an output schema present, the description gives an agent everything needed to invoke the tool correctly and interpret results.

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

Parameters5/5

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

Schema description coverage is 0%, so the description must fully compensate, and it does. Each parameter (query, paths, ext, limit) gets meaningful semantics: query's case-insensitivity and synonyms, paths' fallback to the home directory when empty, ext as an example filter, and limit's default value.

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?

The description opens with a specific verb-resource pair: 'Search the user's disk by filename', and clarifies it is a fuzzy search. It also distinguishes itself from directory/file manipulation siblings by focusing on ranked filename search.

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

Usage Guidelines4/5

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

The description clearly conveys the intended use case: find files by filename, optionally scoped by paths and extension. It does not explicitly name alternatives or exclusion conditions, but the context is strong enough that an agent would not confuse this with fs_list_dir or fs_read.

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