create_page
Create a new page in the active Paper file or a specified file, returning the new page ID. Use open_file with that ID to start working in the page.
Instructions
Creates a new page in either the active file or an explicit file if fileId is provided, and returns its ID. Does not switch to the new page — call open_file with the fileId and the returned pageId to start working in it.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | Optional display name for the new page (shown in the page list). Defaults to "Page N". | |
| fileId | No | Optional. The Paper file ID this call should act on. Pass it to reliably target a specific file when several are open at once (e.g. multiple agents from the same session working in parallel). Omit to use the most recently opened file in the session. |