Skip to main content
Glama
cynarax

Ganado Bridge

file_info

Read-onlyIdempotent

Get file type, size, modified time, and Unix mode without reading contents. Useful for quick file inspection.

Instructions

File type, size, modified time and Unix mode. Does not return contents.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
fileYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0-preview.0

TDQS

A3.9/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, so the description does not need to restate those. It adds meaningful behavioral context by specifying the exact metadata fields returned and clarifying that contents are never included. Edge cases such as missing files or directory support are not covered, but the central behavioral boundary is clear.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single concise sentence with no filler. It front-loads the key behavior and includes only the information needed to distinguish the tool from content-reading siblings.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple, single-parameter metadata tool with strong annotations, the description adequately covers what is returned and what is not. It falls short of full completeness because it does not explain parameter path semantics or explicitly guide the agent toward read_file for content, but the core calling scenario is sufficiently specified.

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?

The schema has one required `file` string with 0% description coverage, and the tool description does not clarify whether this should be an absolute path, relative path, file name, or whether directories are accepted. The parameter is obvious from its name, but the description adds no semantic value beyond the schema already provides.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly identifies the tool's purpose as returning file metadata (type, size, modified time, Unix mode) while explicitly stating it does not return contents. This distinguishes it from siblings like read_file, making the tool's role unambiguous.

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 negative statement 'Does not return contents' implies this tool is for metadata lookups rather than content access, which helps route away from read_file. However, it does not explicitly state when to use file_info over alternatives like list_directory, nor does it name read_file as the sibling for content retrieval.

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