scenario_tool_execute_read

Management

Execute Read Tool

Execute a read-class tool from the Scenario tool catalog by name. Only tools whose permission is "read" run here — write- or delete-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="list collections") -> scenario_tool_execute_read(name="collections_list", parameters={"team_id": "team_xxx", "project_id": "project_xxx"}) Don't use when: the target's permission is write/delete (use scenario_tool_execute_write / scenario_tool_execute_delete).
read-onlyopen-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.