Skip to content

Productivity & Communication

Manage your schedule, tasks, and communications with native app integrations.

Notes & Reminders

Create Note

Typeproductivity.create_note
DescriptionCreates a new note in the Apple Notes app.
InputsTitle (String), Content (String), Folder (String, Optional)
OutputsNote ID (String)

Examples

  • create_note(title="Meeting Minutes", content="Action items...", folder="Work")

Create Reminder

Typeproductivity.create_reminder
DescriptionAdds a new task to Apple Reminders.
InputsTitle (String), List (String, Optional), Priority (High/Medium/Low, Optional)
OutputsReminder ID (String)

Examples

  • create_reminder(title="Buy milk", list="Groceries", priority="High")

List Reminders

Typeproductivity.list_reminders
DescriptionRetrieves a list of incomplete reminders.
InputsList (String, Optional)
OutputsReminders (Array<String>)

Examples

  • list_reminders(list="Today")

Calendar

Create Event

Typeproductivity.create_event
DescriptionSchedules a new event in the Calendar app.
InputsTitle (String), Start Time (String), Duration (Number), Location (String, Optional)
OutputsEvent ID (String)

Examples

  • create_event(title="Team Sync", start_time="Tomorrow 10am", duration=30)

List Events

Typeproductivity.list_events
DescriptionLists upcoming calendar events.
InputsRange (Today/Week/Month)
OutputsEvents (Array<String>)

Examples

  • list_events(range="Today")

Communication

Send Email

Typecommunication.send_email
DescriptionComposes an email in Apple Mail.
InputsTo (String), Subject (String), Body (String)
OutputsResult (String)
Permissions⚠️ Opens the Mail compose window. Does not auto-send without user confirmation.

Examples

  • send_email(to="john@example.com", subject="Hello", body="Just checking in.")

Send Message

Typecommunication.send_message
DescriptionSends an iMessage or SMS via the Messages app.
InputsTo (String), Message (String)
OutputsResult (String)

Examples

  • send_message(to="Alice", message="Running late!")