create_page
Generate and publish a new wiki page on Wizzypedia by specifying a title, content, and optional summary using MCP-enabled tools.
Instructions
Create a new wiki page
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| content | Yes | Wiki content for the new page | |
| summary | No | Edit summary | Created via MCP |
| title | Yes | Title of the new page |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "Wiki content for the new page",
"type": "string"
},
"summary": {
"default": "Created via MCP",
"description": "Edit summary",
"type": "string"
},
"title": {
"description": "Title of the new page",
"type": "string"
}
},
"required": [
"title",
"content"
],
"type": "object"
}