appendToPage
Add HTML or markdown-style content to a OneNote page, with optional timestamps and visual separators, using the OneNote MCP Server for direct integration with AI tools.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
addSeparator | No | Add a visual separator (default: true). | |
addTimestamp | No | Add a timestamp (default: true). | |
content | Yes | Content to append (HTML or markdown-style). | |
pageId | Yes | The ID of the page to append content to. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"addSeparator": {
"default": true,
"description": "Add a visual separator (default: true).",
"type": "boolean"
},
"addTimestamp": {
"default": true,
"description": "Add a timestamp (default: true).",
"type": "boolean"
},
"content": {
"description": "Content to append (HTML or markdown-style).",
"type": "string"
},
"pageId": {
"description": "The ID of the page to append content to.",
"type": "string"
}
},
"required": [
"pageId",
"content"
],
"type": "object"
}