Skip to main content
Glama
WYRE-AI

Slide MCP Server

by WYRE-AI

slide_search_agent_files

Search file paths indexed on a protected agent system. Locate files by search term with pagination and sorting options to quickly identify relevant results.

Instructions

Search the file paths indexed on an agent's protected system (requires file indexing to be enabled on the agent).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoNumber of items to return per page. Defaults to 10.
offsetNoStarting index for pagination. Defaults to 0.
sort_byNoField to sort by. Defaults to "path".
agent_idYesAgent ID.
sort_ascNoSort in ascending order. Defaults to false (descending).
search_termYesThe search term for file paths. Must be URL-encoded.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.8/5.0
Behavior3/5

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

No annotations exist, so the description must stand alone. It usefully discloses that the search is limited to indexed file paths on a protected system and that indexing must be enabled, but it does not mention return values, pagination behavior, or authorization requirements. This is minimal but non-misleading contextual disclosure.

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 a single sentence with no filler, and the crucial prerequisite is placed in a parenthetical at the end. It is appropriately sized and front-loaded.

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 read-only search tool, the description plus the fully documented schema gives an agent the core invocation details: required agent_id/search_term, pagination, and sort options. It lacks an explicit statement of what the returned matches look like, but with no output schema defined it does not need to enumerate return fields. The main gap is absence of guidance tying it to alternatives, which is already covered under usage guidelines.

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 the schema already documents all six parameters including defaults and the enum for sort_by. The description adds no param-specific detail beyond reinforcing that the target corpus is file paths, so a baseline 3 is appropriate.

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?

The description opens with the specific verb 'Search' and identifies the exact resource—'file paths indexed on an agent's protected system'—which is enough to understand the tool's scope. It does not explicitly contrast with siblings such as slide_get_agent_file_versions or slide_browse_file_restore, so it misses the top point on sibling differentiation.

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 parenthetical 'requires file indexing to be enabled on the agent' provides a clear precondition for use, telling the agent when the tool is available. It does not name alternative tools or spell out when not to use it, but the context is sufficiently clear to qualify as 4.

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