Skip to main content
Glama
crunchtools

mcp-pcloud-crunchtools

by crunchtools

Pcloud Search

pcloud_search

Find files and folders in pCloud by matching their names against a query. Restrict the search to a specific folder using an optional path.

Instructions

Search pCloud for files and folders whose names match a query.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pathNo/
queryYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed2 schema fields changedv2.5.0
    • addedInput schema / additionalProperties
      Added value: +false
    • removedOutput schema / description
      Removed value: -"Generic wrapper for non-object return types."
  2. First observedv2.1.0

TDQS

A3.6/5.0
Behavior3/5

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

With no annotations, the description carries full behavioral burden. It does disclose that matching is by name, applies to both files and folders, and is a search operation, but it omits path-scoping behavior, recursion, case sensitivity, or output limits.

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?

One sentence with no filler; the key verb, resource, and matching criterion are all immediately present. It earns its place without redundant phrasing.

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

Completeness3/5

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

For a two-parameter, non-mutating search tool with an output schema, the description provides a workable baseline: the core operation and query semantics are stated. However, the meaning of 'path' and behavioral details about search scope are missing, making it merely adequate rather than complete.

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

Parameters2/5

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

Schema description coverage is 0%, so the description needs to explain both parameters. It clarifies that 'query' is matched against names, but the 'path' parameter is never mentioned in the description; the agent must guess its role from the schema's name and 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 uses a specific verb ('Search'), a clear resource ('pCloud'), and a precise object ('files and folders whose names match a query'). This distinguishes it from structural siblings like pcloud_list_folder by making name-based matching the defining behavior.

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 the intended use case—look up items by name rather than browsing a directory—but it never explicitly says when to prefer this tool over pcloud_list_folder or any other sibling. No exclusions or alternative conditions are provided.

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