Skip to main content
Glama
minking
by minking

files_copy

Copy MYBOX files or folders to a specified folder, optionally rename the copy, and overwrite duplicates.

Instructions

파일/폴더 복사

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameNo복사본 이름(생략 시 원본 이름 유지)
parentIdNo복사본을 저장할 폴더 ID(생략 시 루트)
resourceIdYes원본 파일/폴더 ID
isOverwriteNo동일 이름 존재 시 덮어쓰기 여부

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.2/5.0
Behavior1/5

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

No annotations are provided, so the description carries the full behavioral burden, and it discloses nothing beyond the verb. It does not state whether copying is a deep recursive copy, what happens on name collision, required permissions, or side effects on the original. For a mutation tool with zero annotation coverage this is a serious gap.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness2/5

Is the description appropriately sized, front-loaded, and free of redundancy?

At a single three-word phrase, the problem is under-specification rather than verbosity. There is nothing wasted, but also nothing that earns its place beyond the tool name, so it cannot score as well-structured guidance.

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

Completeness2/5

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

With 4 parameters, no annotations, and no output schema, the description is far too thin to guide correct invocation. The agent has no description-level signal about overwrite semantics, destination defaults, or return behavior.

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%, with all four parameters (name, parentId, resourceId, isOverwrite) documented in the schema itself. Per the rubric, a high-coverage schema sets the baseline at 3, and the description adds no extra parameter meaning.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose3/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description '파일/폴더 복사' (copy file/folder) gives a specific verb (복사/copy) and resource (파일/폴더), which is slightly more than the bare tool name files_copy. However, it provides no scope, no differentiation from adjacent siblings like files_move, files_rename, or files_upload, so it sits at the minimum-viable level.

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 on when to use this tool versus alternatives such as files_move or files_upload. No prerequisites, no exclusions, no context — the agent must infer all routing decisions from the tool name alone.

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