notes_create
Create formatted Apple Notes with custom titles, content, markdown-like syntax, and optional features like headings, bold, italic, underline, links, and lists.
Instructions
[Apple Notes operations] Create a new note with optional formatting
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | Content of the note, can include markdown-like syntax for formatting | |
format | No | Formatting options for the note content | |
title | Yes | Title of the note |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "Content of the note, can include markdown-like syntax for formatting",
"type": "string"
},
"format": {
"description": "Formatting options for the note content",
"properties": {
"bold": {
"description": "Enable bold formatting (**text**)",
"type": "boolean"
},
"headings": {
"description": "Enable heading formatting (# Heading)",
"type": "boolean"
},
"italic": {
"description": "Enable italic formatting (*text*)",
"type": "boolean"
},
"links": {
"description": "Enable link formatting ([text](url))",
"type": "boolean"
},
"lists": {
"description": "Enable list formatting (- item or 1. item)",
"type": "boolean"
},
"underline": {
"description": "Enable underline formatting (~text~)",
"type": "boolean"
}
},
"type": "object"
},
"title": {
"description": "Title of the note",
"type": "string"
}
},
"required": [
"title",
"content"
],
"type": "object"
}