accelo_delete_prospect
Delete a prospect from Accelo CRM using the prospect ID to remove outdated or unwanted records.
Instructions
Delete a prospect.
Args: id: Prospect ID to delete
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes |
Delete a prospect from Accelo CRM using the prospect ID to remove outdated or unwanted records.
Delete a prospect.
Args: id: Prospect ID to delete
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes |
Changes observed during successful MCP inspections.
v0.1.0Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must carry the burden of behavioral disclosure. It says only 'Delete a prospect' and gives no information about irreversibility, permissions required, cascading effects, or whether the deletion is soft or hard.
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 front-loaded and free of filler, consisting of one short sentence plus a brief args section. It is efficient, though perhaps too terse for a destructive operation.
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 no annotations, no output schema, and 0% parameter description coverage, the description is incomplete for a destructive tool. It omits critical context such as whether the action is reversible, what permissions are needed, and what happens on success or failure.
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 schema's 'id' parameter has no description. The description adds minimal meaning by stating 'Prospect ID to delete', but it does not clarify format, expected type beyond the schema, or provide examples.
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 states a specific verb 'Delete' and resource 'prospect', which is clear and distinguishes it from sibling tools like accelo_get_prospect, accelo_list_prospects, and accelo_update_prospect. However, it offers no scope or context beyond the basic action.
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?
There is no guidance on when to use this tool versus alternatives such as accelo_deactivate_contact or accelo_update_prospect. It does not mention prerequisites, side effects, or conditions for deletion.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.