create_page
Create a new page in a BookStack wiki by specifying content in HTML or Markdown format, organizing it within books or chapters, and adding tags for categorization.
Instructions
Create a new page in a book or chapter
Input Schema
Name | Required | Description | Default |
---|---|---|---|
book_id | No | Parent book ID (required if not in chapter) | |
chapter_id | No | Parent chapter ID (required if not directly in book) | |
html | No | Page content in HTML format | |
markdown | No | Page content in Markdown format | |
name | Yes | Page name (required, max 255 chars) | |
priority | No | Page priority/order | |
tags | No | Array of tags with name and value |
Input Schema (JSON Schema)
{
"properties": {
"book_id": {
"description": "Parent book ID (required if not in chapter)",
"type": "number"
},
"chapter_id": {
"description": "Parent chapter ID (required if not directly in book)",
"type": "number"
},
"html": {
"description": "Page content in HTML format",
"type": "string"
},
"markdown": {
"description": "Page content in Markdown format",
"type": "string"
},
"name": {
"description": "Page name (required, max 255 chars)",
"type": "string"
},
"priority": {
"description": "Page priority/order",
"type": "number"
},
"tags": {
"description": "Array of tags with name and value",
"items": {
"properties": {
"name": {
"type": "string"
},
"order": {
"type": "number"
},
"value": {
"type": "string"
}
},
"required": [
"name",
"value"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"name"
],
"type": "object"
}