Skip to main content
Glama

ftp_delete

Destructive

Removes an FTP account from Beget hosting using its login suffix. Use it to clean up or revoke FTP access when an account is no longer needed.

Instructions

Убрать FTP-аккаунт.

Args: suffix: Суффикс логина FTP

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
suffixYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

C2.9/5.0
Behavior2/5

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

Annotations already declare destructiveHint=true and readOnlyHint=false, so the agent knows this is a destructive write. The description only restates that by saying 'убрать аккаунт' and adds nothing about whether hosted files are also removed, whether the action is reversible, or what permissions are required — no value beyond the annotations.

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?

Front-loaded with the action and resource, followed by a compact Args block; there is no filler. It is perhaps over-terse for a destructive operation, but nothing is wasted.

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?

An output schema exists so return values need not be explained, and annotations cover the safety profile. Still, for a destructive single-parameter mutation with 0% schema coverage, the definition omits the account identifier format and the blast radius of the deletion, leaving the agent under-informed.

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 0%, so the description must carry the parameter load. 'Суффикс логина FTP' does explain what the bare 'suffix' field means, which is genuine compensation, but it is thin — it does not clarify the suffix relative to the full account name or give an example format.

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 states a specific verb and resource ('Убрать FTP-аккаунт' / remove an FTP account), which is unambiguous and clearly distinguishable from siblings like ftp_add, ftp_list and ftp_change_password. It does not, however, explicitly contrast itself with any sibling, so it stops short of a 5.

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 named alternative. The agent must infer from the name alone that this is the teardown counterpart to ftp_add.

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