datacrazy_products_delete
Excluir produto (DELETE /api/v1/products/{id}). [write, altera dados]
Bulk support: accepts ids for batched execution.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | ||
| ids | No | ||
| body | No | ||
| account | No |
Excluir produto (DELETE /api/v1/products/{id}). [write, altera dados]
Bulk support: accepts ids for batched execution.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | ||
| ids | No | ||
| body | No | ||
| account | No |
Changes observed during successful MCP inspections.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description describes a destructive operation ('Excluir produto', DELETE) and states '[write, altera dados]', while the annotations set `destructiveHint: false`. This is a direct contradiction. The description provides no other behavioral context such as irreversibility, authorization requirements, or side effects.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is very concise: two short sentences with the core action, endpoint, and batch capability front-loaded. There is no filler, and every sentence adds useful information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given four parameters, no output schema, and an annotation contradiction, the description is too sparse. It omits the meaning of `body` and `account`, possible error/response behavior, and the destructive side effects. The bulk note is helpful but not enough for confident invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
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. It adds meaning by noting that `ids` enables batched execution and that `id` is used in the URL path. However, `body` and `account` remain completely unexplained, leaving the tool under-documented for a 4-parameter schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states 'Excluir produto' (delete product) and explicitly names the endpoint DELETE /api/v1/products/{id}. The action, target resource, and HTTP method are unambiguous, and it is easily distinguished from sibling product tools like create, get, list, and update.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The bulk-support note provides concrete usage guidance: an agent can pass `ids` for batched deletion instead of repeatedly calling the tool. However, it does not explicitly address when not to use this tool or compare it to alternatives, though the delete purpose is inherently clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.