Skip to main content
Glama
crunchtools

mcp-pcloud-crunchtools

by crunchtools

Pcloud Copy Folder

pcloud_copy_folder

Copy a pCloud folder to a new destination path by providing the source folder and target location, duplicating the folder and its contents in cloud storage.

Instructions

Copy a folder in pCloud to a new location.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pathYes
to_pathYes

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

B3.2/5.0
Behavior2/5

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

No annotations are present, so the description carries the full burden of behavioral disclosure. It states that a folder is copied, but does not explain behavior such as whether the copy is recursive, what happens if the destination already exists, or whether the original is preserved. This is minimal disclosure for a tool that could have important edge cases.

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, front-loaded sentence with no redundant wording. It immediately states the operation and result, earning its place without filler.

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?

Given the simple operation and the presence of an output schema, a short description is partly justified; return values do not need explanation. However, the description lacks parameter semantics and edge-case behavior, and with no annotations the tool definition is only minimally viable.

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?

The input schema provides no descriptions for 'path' or 'to_path', and schema description coverage is 0%. The description only implies that one path is the source and the other is the destination; it does not explain path format, folder-only constraints, or whether destination parent folders need to exist. The description does not compensate for the schema gap.

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 ('Copy') and resource ('folder') and clearly states the outcome: moving it to a new location. This distinguishes it from sibling tools like pcloud_copy_file, pcloud_delete_folder, and pcloud_rename_folder.

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?

There is no guidance about when to use this tool versus alternatives. It does not mention that it is the appropriate choice for folders rather than files, nor does it provide any conditions, prerequisites, or exclusions.

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