create_page
Create a new Scrapbox page with a specified title and optional body content, returning the page URL without opening a browser.
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 my-cosense-project project as default if projectName is not specified.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| body | No | Content in markdown format (default) or Scrapbox syntax (when format is 'scrapbox'). Avoid duplicating the title in the body since it's automatically displayed at the top. Supports links, code blocks, lists, and emphasis. | |
| title | Yes | Title of the new page | |
| format | No | Content format of the body. 'markdown' (default) converts Markdown to Scrapbox syntax. 'scrapbox' passes content through as-is, preserving Scrapbox-native indentation and syntax. | |
| projectName | No | Target project name. If not specified, defaults to 'my-cosense-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. |