Skip to main content
Glama
webapper-services

CloudSee Drive MCP Server

Recent files

recent_files
Read-only

Retrieve recently accessed or modified files from your CloudSee Drive account, sorted newest first. Use pagination cursors to page through complete results.

Instructions

List the account's most recently accessed or modified files, newest first, with pagination. For a complete listing, keep calling with the returned cursor until no cursor comes back.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMax items (1-200, default 13). The connector sizes each page to what it can render whole, starting at 13 and adapting to the size of your items from the previous page; a larger value is reduced to what fits.
cursorNoOpaque pagination cursor returned by a previous call.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changedv3.1.1
    • changedInput schema / properties / limit / description
      Previous value: -"Max items (1-200, default 50)."New value: +"Max items (1-200, default 13). The connector sizes each page to what it can render whole, starting at 13 and adapting to the size of your items from the previous page; a larger value is reduced to what fits."
  2. First observedv1.0.0

TDQS

A4.2/5.0
Behavior4/5

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

The readOnlyHint and openWorldHint annotations already convey that this is a safe read operation. The description adds useful behavioral context beyond those annotations: newest-first ordering and the explicit instruction to keep following the cursor until none is returned.

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?

Two sentences with no filler: the first defines purpose, scope, and ordering; the second gives the necessary pagination instruction for complete traversal. Every sentence earns 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 list tool with zero required parameters and detailed schema descriptions, the definition is mostly complete: it covers what is listed, the ordering, and how to paginate through all results. There is no output schema, so a note on item shape would add value, but the absence does not prevent correct invocation.

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%, and the limit parameter is already richly documented, including the adaptive page-size behavior. The description adds little parameter-level meaning beyond reinforcing the cursor loop, so the baseline of 3 is appropriate.

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 states a specific verb ('List'), a clear resource ('the account's most recently accessed or modified files'), and adds ordering ('newest first') and pagination. This cleanly distinguishes it from generic listing siblings like list_files and search_files.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides a clear context: use this when you need recently accessed or modified files for the account. It does not explicitly name excluded alternatives, but the recency-focused framing is enough to guide tool selection among siblings.

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