Skip to main content
Glama
flafkus
by flafkus

list_files

Read-only

List all file and folder paths in an Overleaf project by providing its ID or exact name to view the project structure.

Instructions

List file and folder paths in an Overleaf project.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
projectYesProject id (24-char hex) or exact name

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.8/5.0
Behavior3/5

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

The readOnlyHint annotation already covers the safety profile, so the description does not need to restate that. The description adds that the tool returns paths and includes both files and folders, but it does not disclose behavioral details such as open-world completeness limitations.

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 sentence with no filler. It front-loads the core action and object, making it immediately scannable while earning its place.

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 read-only tool with one required parameter, full schema coverage, and an output schema, the description is sufficient for correct invocation. It does not explicitly address the openWorldHint caveat, but the annotation already signals that.

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 coverage is 100%, with the single 'project' parameter fully documented as a project id or exact name. The description merely restates the project context and does not add parameter-level detail beyond the schema.

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 uses a specific verb ('List') and resource ('file and folder paths in an Overleaf project'), making its function immediately clear. It also distinguishes itself from siblings like list_projects (lists projects) and read_file (reads file content).

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 gives a clear context for use—listing paths within an Overleaf project—but provides no explicit guidance about when to use this tool versus alternatives or when not to use it. Sibling routing is left to inference rather than stated.

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