boond_apps_uninstall
Remove an app from BoondManager by providing its unique ID. Deactivate the app directly through the API.
Instructions
Uninstall an app by ID
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes |
Remove an app from BoondManager by providing its unique ID. Deactivate the app directly through the API.
Uninstall an app by ID
| 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 present, so the description carries the full burden of behavioral disclosure. It only states the action itself and does not reveal that uninstalling is likely destructive, irreversible, or may have side effects on associated data.
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 a single sentence with no wasted words. It front-loads the action and the target, making it easy to scan.
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?
For a destructive operation with no annotations and no output schema, the description is too sparse. An agent gets no information about side effects, permissions, idempotency, or what happens after a successful uninstall.
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?
The schema has 0% description coverage, and the description only says 'by ID', which largely restates the required 'id' property. It does not explain what kind of ID is expected, where to find it, or any format requirements beyond the schema's minimal string type.
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 ('Uninstall'), a clear resource ('an app'), and the identifying mechanism ('by ID'). This clearly distinguishes it from sibling tools like apps_install, apps_get, and apps_search.
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 about when to use this tool versus alternatives. It does not mention that it should be used to reverse an installation, nor does it contrast with apps_install or explain prerequisites or consequences.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.