Skip to main content
Glama

s3_get_files

Read-only

List files in an S3 bucket with pagination and search by filename. Specify the bucket name, optionally filter results, and navigate pages to locate objects.

Instructions

Список файлов в бакете с пагинацией и поиском (s3/get_files).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNoНомер страницы
limitNoРазмер страницы
bucketYesИмя бакета
searchNoПоисковая строка по имени файла
account_idNoID S3-аккаунта (если требуется; уточняйте через s3_get_users)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.3/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, covering the safety profile. The description adds pagination and search capabilities, which are useful, but doesn't disclose return format or pagination specifics. With annotations present, this is adequate but not rich.

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 a single, front-loaded sentence that states the core function. The inclusion of the endpoint path is redundant but doesn't harm conciseness.

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

Completeness2/5

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

With 5 parameters, no output schema, and a minimal description, the tool lacks detail on pagination behavior, defaults, or response structure. The description doesn't compensate for the missing output schema, leaving agents uncertain about expected results.

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 all parameters are documented. The description does not add additional meaning beyond the schema, meriting the baseline 3.

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 clearly states the action (list files) and resource (bucket), and mentions pagination and search. It is distinct from sibling s3_get_buckets and s3_get_users by focusing on files, though it doesn't explicitly differentiate them.

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?

Usage is implied: use when you need to list files in a bucket. No explicit guidance on when not to use it or alternatives, but the tool's purpose is straightforward given the s3_* sibling context.

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

Deploy Server

Other Tools