create_note
Create an Apple Note from markdown, preserving headings, lists, tables, bold, and italic as real Notes objects, and attach local image or file links directly into the note.
Instructions
Create an Apple Note from markdown, preserving real formatting.
Headings, bullet and numbered lists, tables, bold and italic all survive as real Notes objects -- unlike AppleScript-based servers, which force the whole note to a fixed font size and cannot produce tables at all.
Attachments: a whole-line image  or link [name](/path) whose
target is a LOCAL file (an absolute path or a file:// URL) is attached to the note at
that point, of any byte size. An http(s) link stays an ordinary link. A display size may
be added after a pipe --  -- as small, medium or large.
Args:
title: the note's title -- the bold first line Apple shows in the notes list, not
just metadata. Give it a real, descriptive value. If left blank, it is taken
from the first heading or line of prose in the markdown (never an image).
markdown: the body. Do NOT repeat the title as a # <title> heading at the top --
Notes already shows the title, and a leading one matching title is dropped.
For section headings inside the note use ## and ###: # is Apple's Title
style, so a # heading renders as a second title. ## Foo round-trips as
## Foo; only ### and deeper flatten (to ##).
folder: optional existing folder to file the note under, given as a name or, where
the name is not unique, as a full path like "Personal/Projects/Recipes". Call
list_folders to see what exists; an ambiguous name is rejected, not guessed.
Returns the new note's ID.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes | ||
| folder | No | ||
| markdown | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |