Skip to main content
Glama

MCP Reminders

by MikeyBeez

help

Access guidance on managing reminders and notes across sessions for AI assistants. Simplify task organization and ensure timely follow-ups with structured assistance.

Instructions

Get help on using reminders

Input Schema

NameRequiredDescriptionDefault

No arguments

Input Schema (JSON Schema)

{ "properties": {}, "type": "object" }

Implementation Reference

  • Handler for the 'help' tool that returns the static help documentation as a text content block.
    case 'help': { return { content: [{ type: 'text', text: HELP_DOCUMENTATION }], }; }
  • src/index.ts:323-331 (registration)
    Registration of the 'help' tool in the listTools handler response, including name, description, and input schema.
    { name: 'help', description: 'Get help on using reminders', inputSchema: { type: 'object', properties: {}, }, }, ],
  • Input schema definition for the 'help' tool, which takes no parameters.
    inputSchema: { type: 'object', properties: {}, }, },
  • Static help documentation string referenced by the 'help' tool handler.
    const HELP_DOCUMENTATION = ` # MCP Reminders Server A simple reminder system for Claude - like "Alexa, remind me..." but for AI. Leave notes for yourself across sessions, check them when you start, act on them or save them. ## Available Functions: ### remind_me(reminder, priority?) Add a reminder to the queue. - reminder: What to remember - priority: "high", "normal", "low" (default: "normal") Returns: Reminder ID ### check_reminders(filter?) Check your reminders. - filter: Optional - "all", "high", "normal", "low" (default: "all") Returns: List of reminders sorted by priority and time ### complete_reminder(id) Mark a reminder as completed/handled. - id: Reminder ID Returns: Confirmation ### delete_reminder(id) Delete a reminder without completing it. - id: Reminder ID Returns: Confirmation ### move_to_notes(id, note?) Move a reminder to permanent notes (Obsidian). - id: Reminder ID - note: Optional additional note Returns: Confirmation ### clear_old_reminders(days?) Clear reminders older than N days. - days: Number of days (default: 7) Returns: Number cleared ### help() Show this documentation. ## Usage Pattern: 1. Start session: check_reminders() 2. See what needs attention 3. Work on items, then complete_reminder(id) 4. Important items: move_to_notes(id) 5. Clean up: clear_old_reminders() ## Examples: - remind_me("Test the new contemplation loop integration", "high") - remind_me("Look into why AppleScript restart lost context") - check_reminders("high") - complete_reminder("rem_12345") `;

Other Tools

Related Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/MikeyBeez/mcp-reminders'

If you have feedback or need assistance with the MCP directory API, please join our Discord server