create-note
Create and save notes directly in Apple Notes through iCloud integration. Input title, content, and optional tags to organize and manage your notes efficiently.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | ||
tags | No | ||
title | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"content": {
"minLength": 1,
"type": "string"
},
"tags": {
"items": {
"type": "string"
},
"type": "array"
},
"title": {
"minLength": 1,
"type": "string"
}
},
"required": [
"title",
"content"
],
"type": "object"
}