update_page
Modify and update existing wiki pages on Wizzypedia by providing a title, new content, and optional edit summary through the MCP-enabled Wizzypedia MCP Server.
Instructions
Update an existing wiki page
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| content | Yes | New wiki content for the page | |
| summary | No | Edit summary | Updated via MCP |
| title | Yes | Title of the page to update |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "New wiki content for the page",
"type": "string"
},
"summary": {
"default": "Updated via MCP",
"description": "Edit summary",
"type": "string"
},
"title": {
"description": "Title of the page to update",
"type": "string"
}
},
"required": [
"title",
"content"
],
"type": "object"
}