Skip to main content
Glama
ptrel1

NapCat MCP Server

by ptrel1

get_group_files_by_folder

Get file list in a specific group folder. Provide group ID and folder ID to return all files in that folder.

Instructions

Get file list in specified group folder

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
group_idYesGroup ID
folder_idNoFolder ID

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.3.0

TDQS

B3.1/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 burden. It states the operation (get file list) but doesn't disclose whether it's read-only, whether folder_id is required or optional, what happens if folder_id is omitted, or any pagination/recursion behavior. For a listing tool, this is a notable 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?

The description is a single concise sentence that front-loads the action and resource. It earns its place with no wasted words, though it could add a bit more context without becoming verbose.

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, no output schema, and a terse description, the tool lacks critical context. An agent doesn't know whether folder_id is optional, what the return format is, or how this differs from get_group_root_files. For a file-listing tool, this is incomplete.

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%, so the schema already documents both parameters. The description adds the context that the tool lists files in a folder, but it doesn't clarify the relationship between group_id and folder_id (e.g., whether folder_id is optional and defaults to root). Baseline 3 is appropriate since the schema does the heavy lifting.

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 'Get file list in specified group folder' clearly states the action (get file list) and the resource (specified group folder). It distinguishes itself from siblings like get_group_root_files (root files) and get_group_file_url (file URL), though it doesn't explicitly name them.

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 usage for listing files in a group folder, but it doesn't explicitly state when to use this tool versus alternatives like get_group_root_files or get_group_file_system_info. No exclusions or alternative routing are provided.

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