io.github.henilcalagiya/mcp-apple-notes
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| create_noteA | Create a new note with specified name and content. Supported HTML: , , , , , Best Practices: Use semantic HTML, add tags for spacing, avoid CSS styles Folders: Root level or nested paths (up to 5 levels deep) Limitations: No special chars in name, no complex CSS/JS Example: name: "Project Report" body: "Status: In ProgressTask 1" |
| create_folderA | Create a folder in Apple Notes. Features:
Validation:
|
| read_noteA | Read a note by its primary key ID with AppleScript verification. Security Features:
Output:
|
| read_folderA | Read a folder by its primary key ID with AppleScript verification. Security Features:
Output:
|
| update_noteA | Update an existing note by its primary key ID with AppleScript verification. Required: note_id, note_name, new_name, and new_body parameters Supported HTML: , , , , , Best Practices: Use semantic HTML, add tags for spacing, avoid CSS styles Security: AppleScript verifies ID and name match before updating Example: note_id: "p1234" note_name: "Current Note Title" new_name: "Updated Report" new_body: "Status: CompleteDone" |
| rename_folderA | Rename a folder in Apple Notes by ID with enhanced name verification. Features:
Validation:
|
| move_folderA | Move a folder from one location to another in Apple Notes by ID with AppleScript verification. Features:
Validation:
|
| list_folder_with_structureA | List the complete folder structure with hierarchical tree format. Features:
Output Format:
Returns: Hierarchical tree structure of all folders in Apple Notes |
| delete_noteA | Delete a note by its primary key ID with AppleScript verification. Security Features:
Output:
|
| delete_folderA | Delete a folder in Apple Notes by ID with AppleScript verification. Security Features:
Output:
|
| list_notes_with_structureA | List the complete folder structure with notes included in hierarchical tree format. Features:
Output Format:
Returns: Hierarchical tree structure of all folders and notes in Apple Notes |
| list_all_notesA | List all notes across all folders with their names and IDs. Features:
Output Format:
Returns: Complete list of all notes across all folders in Apple Notes |
| move_noteA | Move a note from one folder to another in Apple Notes by ID with AppleScript verification. Features:
Requirements:
|
| search_notesA | Search for notes containing the specified keywords. Features:
Output Format:
|
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 14 tools
Each tool targets a distinct resource (folder or note) with a specific action (create, read, update, delete, list, move, search, rename). The few overlapping listing tools have clearly different output formats (plain list vs. hierarchical structure).
All tool names follow a consistent verb_noun pattern in snake_case, such as create_folder, list_notes_with_structure, move_note. There are no variations or mixed conventions.
14 tools is well-scoped for an Apple Notes management server. It covers all core operations (CRUD, listing, searching, moving, renaming) for both folders and notes without unnecessary bloat or omissions.
The tool surface provides complete lifecycle management for folders and notes: create, read, update, delete, list, search, move, rename. No obvious missing operations for the domain of note-taking.