updatePageTitle
Modify page titles in Microsoft OneNote by specifying the page ID and providing a new title via the OneNote MCP Server. Simplify content organization directly through AI-driven interactions.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
newTitle | Yes | The new title for the page. | |
pageId | Yes | The ID of the page whose title is to be updated. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"newTitle": {
"description": "The new title for the page.",
"type": "string"
},
"pageId": {
"description": "The ID of the page whose title is to be updated.",
"type": "string"
}
},
"required": [
"pageId",
"newTitle"
],
"type": "object"
}