createPage
Generate and add new pages to Microsoft OneNote with specified titles and content (HTML or markdown). Integrates with the OneNote MCP Server to enable AI-driven page creation and management.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | The content for the new page (HTML or markdown-style). | |
title | Yes | The title for the new page. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"content": {
"description": "The content for the new page (HTML or markdown-style).",
"minLength": 1,
"type": "string"
},
"title": {
"description": "The title for the new page.",
"minLength": 1,
"type": "string"
}
},
"required": [
"title",
"content"
],
"type": "object"
}