Skip to main content
Glama
minking
by minking

files_download

Generates a download URL for a MYBOX file using its resource ID, so you can retrieve or share the file.

Instructions

파일 다운로드 URL 생성

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
resourceIdYes다운로드할 파일의 ID

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.9/5.0
Behavior2/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, yet it says nothing about whether the URL is temporary or permanent, whether it requires authentication, or whether it expires. For a link-generation tool these traits are essential and are entirely absent.

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

Conciseness4/5

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

A single front-loaded phrase with zero waste, appropriate for a one-parameter tool. It is arguably too sparse, but nothing in it is padding.

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 no annotations and no output schema, the description should at least explain that the return value is a URL and any validity constraints. Those omissions leave the agent unable to reason about the result or about permission requirements.

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?

Only one parameter exists and the schema already documents it at 100% coverage ('다운로드할 파일의 ID'). The description adds no information beyond the schema, so the baseline of 3 applies.

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 ('파일 다운로드 URL 생성' / generate file download URL) states a specific verb and resource, so an agent can tell it is a URL-issuing tool rather than an actual file-transfer tool. It does not contrast itself with the many sibling tools (files_upload, files_copy, files_delete), but the action is unambiguous.

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 when-to-use or when-not-to-use guidance and no mention of alternatives such as directly fetching content. The agent is left to infer that this produces a link rather than the file bytes.

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