create_page
Create new pages in Scrapbox projects with specified titles and markdown content, returning creation URLs without browser interaction.
Instructions
Create a new page in Scrapbox project on cosense (scrapbox). Creates a new page with the specified title and optional body text. Returns the page creation URL without opening browser. Uses example-project project as default if projectName is not specified.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes | Title of the new page | |
| body | No | Content in markdown format. Avoid duplicating the title in the body since it's automatically displayed at the top. Supports links, code blocks, lists, and emphasis. | |
| projectName | No | Target project name. If not specified, defaults to 'example-project'. | |
| createActually | No | Whether to actually create the page using WebSocket API. If true (default), creates the page immediately. If false, returns only the creation URL. |