get_file_info
Get details about a specific file
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | File ID to look up |
Get details about a specific file
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | File ID to look up |
Changes observed during successful MCP inspections. Dates show when Glama detected each change.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description must disclose behavior itself. It only states that details are returned, but does not specify what details include, error handling, or return format. This is a notable gap for a tool without an output schema.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single short sentence with no filler, efficiently communicating the tool's purpose. It earns every word.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Although the tool is simple, the lack of an output schema and the vague 'details' wording leave the return payload unspecified. A read tool should hint at what kind of details are returned or any special conditions, making the description incomplete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema fully documents the single parameter 'id' with 'File ID to look up' (100% coverage). The description adds no additional parameter meaning, so the baseline score of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description 'Get details about a specific file' uses a clear verb (get) and resource (file), and the scope 'specific' distinguishes it from siblings like list_files (listing) and delete_file (deletion).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No explicit guidance is provided on when to use this tool versus alternatives. The usage is implied by the name and description, but there is no mention of exclusions or prerequisites, so it falls into 'implied usage'.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.
Each tool has a unique purpose: upload, list, get details, and delete. No overlap or ambiguity between actions.
All tools follow a consistent verb_noun pattern with snake_case: delete_file, get_file_info, list_files, upload_file.
4 tools cover the core file management lifecycle appropriately without being unnecessarily large or sparse.
The set covers create (upload), list, detail, and delete. A download or update tool is missing, but for a URL-based upload service, the existing tools cover most workflow needs.