Skip to main content
Glama
ptrel1

NapCat MCP Server

by ptrel1

get_group_file_url

Retrieve a direct download URL for a group file by providing the group ID and file ID, enabling access to shared files.

Instructions

Get group file download URL

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
busidNoFile type
file_idYesFile ID
group_idYesGroup ID

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.3.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 burden of behavioral disclosure. It only states the operation and does not mention whether the URL is temporary, whether it is a direct download link, or whether any authentication or side effects are involved. This is a minimal disclosure with no added behavioral context.

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 extremely concise, front-loaded with the verb and resource, and contains no filler. However, the brevity comes at the cost of omitting useful context such as URL expiry or usage caveats.

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?

For a simple getter with a fully documented schema, this is minimally adequate: the purpose is clear and the return (a download URL) is implied. But there is no mention of the URL's nature or expiration, no output schema, and no annotations to fill the gaps, so it is not fully complete.

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 every parameter is already documented in the input schema, including required flags. The description adds no parameter-level meaning beyond the schema, so the baseline score 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 states a clear verb ('Get') and resource ('group file download URL'), and the word 'download' clarifies that this returns a link rather than file content. It does not explicitly distinguish this from sibling file tools like get_group_files_by_folder or upload_group_file, but the resource is specific enough to be identifiable.

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 guidance on when to use this tool versus alternatives, and does not mention prerequisites such as group membership or file access. It is left entirely to the agent to infer usage from the tool name and context.

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