notes_createRawHtml
Generate Apple Notes directly from raw HTML content by specifying a title and formatted HTML, enabling automated note creation within macOS.
Instructions
[Apple Notes operations] Create a new note with direct HTML content
Input Schema
Name | Required | Description | Default |
---|---|---|---|
html | Yes | Raw HTML content for the note | |
title | Yes | Title of the note |
Input Schema (JSON Schema)
{
"properties": {
"html": {
"description": "Raw HTML content for the note",
"type": "string"
},
"title": {
"description": "Title of the note",
"type": "string"
}
},
"required": [
"title",
"html"
],
"type": "object"
}