Skip to main content
Glama
ilyautov

marketplaces-mcp-ru

wb_remove_cabinet

Destructive

Delete a stored marketplace cabinet by name. If the removed cabinet was active, another one automatically takes over as active.

Instructions

Delete a stored cabinet. If it was active, another becomes active.

Args: name: the cabinet to remove.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv0.5.2

TDQS

A3.6/5.0
Behavior4/5

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

The annotations already flag destructiveHint=true, but the description adds a valuable behavioral detail: 'If it was active, another becomes active.' This discloses a side effect beyond the structured annotations. It does not mention error behavior or whether removal is reversible, but the key destructive behavior is addressed.

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 exceptionally short: a purpose sentence, a relevant behavioral sentence, and a simple parameter mapping. There is no filler or redundant material, and the key information is front-loaded.

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 one-parameter destructive tool with an output schema and destructiveHint annotation, the description conveys the core action and the most important side effect. The notion of 'another becomes active' is left a bit vague, but it is sufficient for an agent to understand and invoke this tool.

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?

With schema description coverage at 0%, the description's 'name: the cabinet to remove' is the only semantic explanation for the single parameter. It clarifies that the name identifies the cabinet being deleted, though it is still fairly close to a natural reading of the parameter name itself.

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 opening phrase 'Delete a stored cabinet' is a clear verb+resource statement that distinguishes this tool from listing, adding, or using cabinets. It does not explicitly reference a sibling tool, but the operation and object are unambiguous enough for an agent to know what it does.

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 does not state when to use this tool versus alternatives like wb_add_cabinet or wb_use_cabinet. It does not explain circumstances that would make deletion inappropriate, nor does it point to any other tool for related tasks.

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