updatePageContent
Update page content in Microsoft OneNote by specifying the page ID and new content, with an option to retain the original title, using the OneNote MCP Server.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| content | Yes | New page content (HTML or markdown-style text). | |
| pageId | Yes | The ID of the page to update. | |
| preserveTitle | No | Keep the original title (default: true). |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"content": {
"description": "New page content (HTML or markdown-style text).",
"type": "string"
},
"pageId": {
"description": "The ID of the page to update.",
"type": "string"
},
"preserveTitle": {
"default": true,
"description": "Keep the original title (default: true).",
"type": "boolean"
}
},
"required": [
"pageId",
"content"
],
"type": "object"
}