TOOL_CALL
Execute a tool by name with the provided arguments. IMPORTANT: You MUST call TOOL_GET(tool_name) first to retrieve the full parameter schema before calling this tool. The arguments must match the schema returned by TOOL_GET, including all required parameters. Calling without the correct arguments will result in errors. Workflow: TOOL_LIST -> TOOL_GET(tool_name) -> TOOL_CALL(tool_name, arguments)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| arguments | Yes | Dictionary of arguments matching the tool's parameter schema from TOOL_GET | |
| tool_name | Yes | The name of the tool to call (e.g., "TIME_SERIES_DAILY") |