From che-ical-mcp
Parses natural language to create a reminder with title, due date, and priority in the user's reminder list.
How this command is triggered — by the user, by Claude, or both
Slash command
/che-ical-mcp:remindThis command is limited to the following tools:
The summary Claude sees in its command listing — used to decide when to auto-load this command
# Quick Reminder Creation Create a reminder from the user's natural language input. ## Process 1. **Parse input**: Extract task title, due date/time, priority 2. **Get reminder lists**: Use `list_calendars` with type="reminder" if needed 3. **Create reminder**: Use `create_reminder` ## Examples User: "Remind me to buy milk" → create_reminder(title="Buy milk", calendar_name="Reminders") User: "Call mom tomorrow at 5pm" → create_reminder(title="Call mom", due_date="2026-01-19T17:00:00+08:00", calendar_name="Reminders") User: "Submit report by Friday - high priority" → create_reminder(t...
Create a reminder from the user's natural language input.
list_calendars with type="reminder" if neededcreate_reminderUser: "Remind me to buy milk" → create_reminder(title="Buy milk", calendar_name="Reminders")
User: "Call mom tomorrow at 5pm" → create_reminder(title="Call mom", due_date="2026-01-19T17:00:00+08:00", calendar_name="Reminders")
User: "Submit report by Friday - high priority" → create_reminder(title="Submit report", due_date="...", priority=1, calendar_name="Reminders")
2plugins reuse this command
First indexed Feb 15, 2026
npx claudepluginhub psychquant/che-ical-mcp --plugin che-ical-mcp/remiManage Apple Reminders via CLI with section support and iCloud sync. Use when the user asks to create, list, complete, search, or organize reminders.
/todoManage TODO.md (show / add / complete / delete / update via natural language) and show today's calendar.
/meeting-todosExtracts action items from a meeting note and routes each task to the appropriate to-do file.
/daily-prioritiesBuilds a structured day plan from calendar items, deadlines, and inbox items, outputting priorities, time blocks, delegation list, and executive briefing notes.
/SKILLGenerates focused daily plan from tasks.json, brain-dump.json, goals.json, and ai-context.md, with top priorities, brain dump triage, time blocks, and quick wins.
/noteAppend notes to capture ideas, list existing notes, or promote notes to todos for seamless task management.