scenario_tool_execute_delete

Management

Execute 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. For catalog-only tools. If the target is in the default tool list, call it directly — scenario_tools_search reports listed: true for those; routing one here buys nothing. 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 whenever the target's inputSchema declares them — many require project_id outright, and OAuth requires both) Returns: the target tool's result, plus a routing note when the target was directly callable. Example: scenario_tools_search(query="delete api key") -> scenario_tool_execute_delete(name="api_key_delete", parameters={"team_id": "team_xxx", "project_id": "project_xxx", "key_id": "apiu_xxx"}) Don't use when: the target's permission is read/write (use scenario_tool_execute_read / scenario_tool_execute_write).
destructiveopen-world

Parameters

NameTypeRequiredDescription
namestringCatalog tool name exactly as returned by scenario_tools_search.
parametersrecord[object Object]Arguments matching the tool's inputSchema from scenario_tools_search. Defaults are applied server-side.