Skip to main content
Glama

user_storage_download_by_name_get

Download records from billing storage by key name. Supports limit/offset pagination and admin acting on behalf of a user.

Instructions

GET /storage/download/{name} Скачать данные из хранилища Тег: Хранилище Спека: user

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesимя ключа
limitNoМакс. кол-во записей
offsetNoСмещение (пропуск записей)
user_idNoadmin acts on behalf of this user

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.7/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full behavioral burden. It only reveals the HTTP verb/path (implying a read), but says nothing about whether this lists or streams content, how limit/offset interact, pagination behavior, or any auth/permission requirements.

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

Conciseness2/5

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

It is short, but it is a raw endpoint dump: the URL line duplicates the schema, and the 'Тег: Хранилище' / 'Спека: user' metadata lines add little for an invoking agent. The purpose statement is not clearly front-loaded as the primary content.

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?

For a tool with four parameters, no annotations, and no output schema, the description leaves the agent without return-value or pagination context. Nothing explains what downloading actually yields, making it insufficient for 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%, so the four parameters (name, limit, offset, user_id) are already documented in the schema. The description adds no extra meaning beyond the endpoint path placeholder {name}, so the baseline 3 applies.

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 phrase 'Скачать данные из хранилища' (download data from storage) states a clear verb (download) plus resource (storage data), reinforced by the endpoint GET /storage/download/{name}. However it offers no differentiation from closely named siblings such as user_storage_manage_by_name_get or user_storage_manage_get, leaving the agent to guess how 'download' differs from 'manage'.

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

Usage Guidelines2/5

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

There is no when-to-use guidance, no prerequisites, and no mention of alternatives. Given the many overlapping storage siblings, the definition gives the agent nothing to disambiguate on.

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

Install Server

Other Tools