scenario_tool_execute_read
ManagementExecute 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.
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="list teams") -> scenario_tool_execute_read(name="teams_list", parameters={})
Don't use when: the tool is registered top-level (call it directly), or its permission is write/delete (use scenario_tool_execute_write / scenario_tool_execute_delete).
read-onlyopen-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. |