Skip to main content
Glama
ilyautov

marketplaces-mcp-ru

avito_delete_method

Destructive

Execute destructive Avito API operations to delete or irreversibly change data. Requires explicit confirmation flags for each write action.

Instructions

Execute one DESTRUCTIVE endpoint: deletes or irreversibly changes data.

Target API: https://developers.avito.ru/api-catalog.

Both confirm_write=true and i_understand_this_modifies_data=true are required; nothing is sent without both.

Args: operation_id: id from the catalog (see avito_search_methods). path_values: values for {placeholders} in the path. query: query-string parameters. body: JSON request body. confirm_write: must be true. i_understand_this_modifies_data: must be true. Returns JSON: {"ok": true, "status", "data"} or the error envelope.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bodyNo
queryNo
path_valuesNo
operation_idYes
confirm_writeNo
i_understand_this_modifies_dataNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv0.6.1

TDQS

A4.1/5.0
Behavior4/5

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

Annotations already declare destructiveHint=true and readOnlyHint=false, so the description adds value by specifying that both confirm_write and i_understand_this_modifies_data must be true, and that nothing is sent without them. It also describes the JSON return format. This goes beyond the annotations without contradicting them.

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 concise, with the destructive intent front-loaded and the argument list clearly formatted. Every sentence contributes value, from the API reference to the return format. No redundant or promotional language.

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?

Given the tool's complexity (6 parameters, no schema coverage) and that an output schema exists, the description covers the essential usage: destructive operation, required confirmation, argument meanings, and return structure. It lacks explicit guidance on when to use this vs. avito_delete_raw, but the core invocation requirements are well addressed.

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

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

With 0% schema description coverage, the description carries the full burden of parameter explanation. It lists all six parameters and gives functional meanings: operation_id from the catalog, path_values for placeholders, query as query-string, body as JSON, and the two boolean flags that must be true. This is sufficient for an agent to understand each parameter's role, though it could elaborate on path_values format.

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 clearly states the tool's purpose: 'Execute one DESTRUCTIVE endpoint: deletes or irreversibly changes data.' This specifies the verb (execute) and resource (destructive endpoint), and the destructive nature distinguishes it from read-only siblings. It also names the target API, providing concrete context.

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?

The description implies usage for destructive operations by emphasizing 'DESTRUCTIVE' and the required confirmation flags, but it does not explicitly contrast with sibling tools like avito_write_method or avito_delete_raw. It only references avito_search_methods for operation_id, leaving the agent to infer when this tool is appropriate versus others.

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