Skip to main content
Glama
MikeyBeez

MCP Reminders

by MikeyBeez

complete_reminder

Mark a specific reminder as completed using its unique ID to manage tasks and notes across AI assistant sessions effectively.

Instructions

Mark a reminder as completed

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesReminder ID

Implementation Reference

  • Core handler function in ReminderManager class that marks a specific reminder as completed by updating its status and saving the changes to the JSON file.
    completeReminder(id: string): boolean { const reminder = this.reminders.get(id); if (!reminder || reminder.status !== 'active') return false; reminder.status = 'completed'; reminder.completed = new Date().toISOString(); this.saveReminders(); return true; }
  • MCP tool dispatch handler for 'complete_reminder' that extracts the reminder ID from arguments and calls the core completeReminder method, returning success or failure message.
    case 'complete_reminder': { const { id } = args as { id: string }; const success = reminders.completeReminder(id); return { content: [{ type: 'text', text: success ? `Reminder ${id} marked as completed.` : `Reminder ${id} not found.` }], }; }
  • src/index.ts:264-277 (registration)
    Registration of the 'complete_reminder' tool in the ListTools response, including name, description, and input schema.
    { name: 'complete_reminder', description: 'Mark a reminder as completed', inputSchema: { type: 'object', properties: { id: { type: 'string', description: 'Reminder ID' } }, required: ['id'], }, },
  • Input schema definition for the complete_reminder tool, specifying the required 'id' parameter.
    inputSchema: { type: 'object', properties: { id: { type: 'string', description: 'Reminder ID' } }, required: ['id'], },

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