get_folder
Retrieve a specific folder by its ID to view its details and contents.
Instructions
Fetch a single folder by its id.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | The folder id. |
Retrieve a specific folder by its ID to view its details and contents.
Fetch a single folder by its id.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | The folder id. |
Changes observed during successful MCP inspections.
v0.3.1Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and openWorldHint=true, covering the safety profile. The description adds 'Fetch' which aligns with read-only behavior but provides no additional context about error handling or return format. With annotations covering the core, a 3 is appropriate.
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, front-loaded sentence with zero waste. It states the essential information clearly and nothing else.
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?
For a simple get-by-id tool with one parameter and annotations covering safety, the description is adequate. It implies the return of a folder object, and no output schema exists to clarify further. The lack of error conditions is a minor gap but acceptable for such a straightforward operation.
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?
Schema description coverage is 100% (the 'id' parameter is described as 'The folder id'). The description repeats this by saying 'by its id', adding no new semantic meaning. Baseline 3 applies when the schema already documents the parameter fully.
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 'Fetch a single folder by its id' uses a specific verb and resource, clearly distinguishing it from list_folders (which returns multiple) and other folder operations. The scope is unambiguous.
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?
The description provides clear context for when to use this tool: when you have a specific folder id. It does not explicitly mention alternatives or exclusions, but the purpose is self-evident enough that an agent can infer not to use it for listing all folders.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.