scenario_tool_execute_delete
ManagementExecute Delete Tool
Execute a delete-class tool from the Scenario tool catalog by name. Delete-class tools are destructive and usually irreversible — confirm with the user before executing.
Only tools whose permission is "delete" run here — read- or write-class tools are rejected with the correct executor named.
Use scenario_tools_search first to find the tool name, its permission class, and its inputSchema. Parameters are validated against the target tool's schema before execution; defaults are applied server-side.
Args:
- name: required — catalog tool name exactly as returned by scenario_tools_search
- parameters: optional — arguments matching the tool's inputSchema (include team_id and project_id here when the target tool requires them for OAuth)
Returns: the target tool's result, unchanged.
Example: scenario_tools_search(query="delete api key") -> scenario_tool_execute_delete(name="api_key_delete", parameters={"key_id": "..."})
Don't use when: the tool is registered top-level (call it directly), or its permission is read/write (use scenario_tool_execute_read / scenario_tool_execute_write).
destructiveopen-world
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| name | string | ✓ | Catalog tool name exactly as returned by scenario_tools_search. |
| parameters | record | [object Object] | Arguments matching the tool's inputSchema from scenario_tools_search. Defaults are applied server-side. |