open_workbook
Load an existing .xlsx file or create a fresh empty workbook to begin spreadsheet editing with live formulas.
Instructions
Start the workbook you will work in. Call with no arguments for a fresh, empty one; pass path to load an existing .xlsx from disk and work on the human's real file.
This replaces whatever workbook the session currently holds, discarding unsaved changes — so call it once at the start, not between steps. You do NOT have to call it at all: an empty workbook appears automatically the moment any other tool touches the session.
Prefer path over xlsx_base64. xlsx_base64 exists for hosts with no shared filesystem and costs enormous context for a file of any size.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | File name to report to the engine when loading from base64. | |
| path | No | Path to an existing .xlsx to load. Omit for an empty workbook. | |
| xlsx_base64 | No | A .xlsx as base64, for when no shared filesystem exists. Use `path` when you can. |