Skip to main content
Glama
Scofield81

Android Control MCP

by Scofield81

delete_path

Delete a file or directory on an Android device with confirmation, as the action is irreversible.

Instructions

Fajl vagy konyvtar torlese az eszkozon. Megerositest ker (nem visszavonhato).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
serialNo
remote_pathYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.6/5.0
Behavior4/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It usefully warns that confirmation is requested and that the operation is irreversible. However, it does not mention whether directory deletion is recursive, what happens if the path does not exist, or any 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.

Conciseness5/5

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

The description is two concise sentences with no redundant wording. The core action is front-loaded, and the irreversibility warning is a valuable second sentence. Every word earns its place.

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

Completeness3/5

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

For a destructive file operation with no annotations, the description covers the essential safety warning and target type, but it omits practical details like how serial affects which device is targeted, whether directories are removed recursively, and any prerequisites. The presence of an output schema reduces the need to describe return values, but the missing path and serial semantics leave noticeable gaps.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/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 compensate, but it only identifies the broad target ('file or directory') and does not explain the remote_path format, path constraints, or the role of the optional serial parameter. The parameter names are self-descriptive to some degree, but the description adds little beyond them.

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 explicitly states the action ('delete') and the resource ('file or directory') on the device, which is specific and distinguishable from siblings like move_path or make_dir. It clearly conveys what the tool does without ambiguity.

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?

The description gives no guidance on when to use this tool versus alternatives such as move_path for relocation or list_files for inspection. It implies deletion use but does not state exclusions, prerequisites, or conditions where another tool should be chosen instead.

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