Skip to main content
Glama
minking
by minking

dms_list

Retrieve files and folders within a given MYBOX folder using a resource ID; supports sorting, pagination, and ordering for browsing cloud storage.

Instructions

특정 폴더 내 파일/폴더 목록 조회

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
sortNo정렬 기준
limitNo
orderNo
offsetNo
resourceIdYes조회할 폴더의 ID

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.7/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 explicit about read-only semantics, pagination (limit/offset), permission requirements, or result ordering. For a 5-parameter listing tool with no output schema, this is a significant gap.

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 sentence with zero filler. It is efficient, though its brevity is partly a symptom of under-specification rather than disciplined conciseness.

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 5 parameters, 40% schema coverage, no annotations, and no output schema, the definition is too thin to fully inform correct invocation. Pagination and sorting semantics in particular are left entirely to the schema.

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 only 40%: sort and resourceId are documented, but limit, offset, and order are not. The description adds no parameter-level meaning at all, so it fails to compensate for the coverage gap.

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?

States a specific verb (조회/list) and resource (파일/폴더 within a 폴더), so the operation is unambiguous. However, it does not differentiate itself from siblings such as search_files_resources and search_folders_resources, which plausibly retrieve overlapping content.

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?

The description gives no when-to-use guidance, no prerequisites, and does not mention any alternative such as search_files_resources or dms_root. An agent must guess whether this or a search tool is appropriate for a given listing task.

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