Skip to main content
Glama
webapper-services

CloudSee Drive MCP Server

Search files

search_files
Read-only

Locate files and folders by name keyword within a drive, using paginated results to retrieve all matches.

Instructions

Search for files and folders by name keyword within a drive (the indexed view). Requires the drive (bucketName). Returns matches with pagination. For a complete listing, keep calling with the returned cursor until no cursor comes back — a page may be short, or even empty, while more results remain.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pathNoFolder within the drive to search under. Empty = drive root.
queryYesKeyword to match against file and folder names.
cursorNoOpaque pagination cursor returned by a previous call.
pageSizeNoMax items per page (1-200, default 13). The connector sizes each page to what it can render whole, starting at 13 and adapting to the size of your items from the previous page; a larger value is reduced to what fits.
bucketNameNoThe CloudSee drive (S3 bucket) name to operate in, e.g. 'max-2778abc0' — find it in the CloudSee dashboard. Required unless CLOUDSEE_DEFAULT_BUCKET is configured on the server.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changedv3.1.1
    • changedInput schema / properties / pageSize / description
      Previous value: -"Max items per page (1-200, default 50)."New value: +"Max items per page (1-200, default 13). The connector sizes each page to what it can render whole, starting at 13 and adapting to the size of your items from the previous page; a larger value is reduced to what fits."
  2. First observedv1.0.0

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already declare readOnlyHint and openWorldHint, but the description adds crucial behavioral nuance beyond them: the pagination contract that a page may be short or empty while more results remain. This prevents a real failure mode (premature termination) and gives actionable guidance beyond the annotations.

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?

Every sentence earns its place: the first states the core function, the second a prerequisite, and the third the critical pagination behavior. It is front-loaded with the key warning and contains no filler or redundant restatement of the title.

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?

The description is complete enough for a read-only search tool: it covers prerequisites, pagination loop, and termination condition. The main gap is that it doesn't specify match semantics (substring vs. exact, case sensitivity, wildcards), which could matter to an agent, and it doesn't describe the result payload since there is no output schema.

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

Parameters4/5

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

Schema description coverage is 100%, so the baseline is 3. The description adds semantic value by explicitly noting bucketName is a requirement (unless a default is configured) and by clarifying that cursor existence, not page content, signals more results. These details amplify the schema's own parameter descriptions.

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 uses a specific verb ('search') with a specific resource ('files and folders by name keyword') and adds the distinguishing qualifier 'within a drive (the indexed view)'. This clearly separates it from generic list/browse tools and makes its function unmistakable.

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

Usage Guidelines3/5

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

The description implies when to use it (when searching by name keyword) and provides a strong usage pattern around pagination, but it never explicitly contrasts it with sibling tools like list_files or browse_folder. There are no 'when not to use' exclusions or alternative routing, leaving some ambiguity.

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