Skip to main content
Glama

productivity_reminder

Create prioritized reminders with due dates to manage tasks and boost productivity. Set priority levels from low to critical and schedule deadlines for better time management.

Instructions

Create a reminder with priority level

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
taskYesWhat to remember
due_dateNoDue date (YYYY-MM-DD or 'today', 'tomorrow')today
priorityNomedium

Implementation Reference

  • The tool "productivity_reminder" is defined and implemented directly in the `server.tool` call within `registerProductivityTools`. It uses `zod` for input validation and returns a formatted string response.
    server.tool("productivity_reminder", "Create a reminder with priority level", {
      task: z.string().describe("What to remember"),
      due_date: z.string().default("today").describe("Due date (YYYY-MM-DD or 'today', 'tomorrow')"),
      priority: z.enum(["low", "medium", "high", "critical"]).default("medium")
    }, async ({ task, due_date, priority }) => {
      const icons: Record<string, string> = { low: "[LOW]", medium: "[MED]", high: "[HIGH]", critical: "[!!!]" };
      const resolved = due_date === "today" ? new Date().toISOString().split("T")[0]
        : due_date === "tomorrow" ? new Date(Date.now() + 86400000).toISOString().split("T")[0]
        : due_date;
      return { content: [{ type: "text", text: `**Reminder Set** ${icons[priority]}\n\nTask: ${task}\nDue: ${resolved}\nPriority: ${priority.toUpperCase()}\n\n*Add to your task manager or memory file.*` }] };
    });
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, yet the description discloses no behavioral traits: it doesn't explain what happens when the reminder triggers, notification delivery methods, persistence/storage, or the behavioral difference between priority levels (critical vs low).

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Extremely brief at six words, with no redundant phrases. However, breverty sacrifices necessary context given the lack of annotations and sibling differentiation. Front-loaded but insufficiently informative for the complexity.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Incomplete for a 3-parameter creation tool with no annotations and no output schema. Fails to explain default values (today, medium), priority semantics, or return behavior. Sibling overlap makes the omission of differentiation guidance particularly costly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

With 67% schema coverage (task and due_date described, priority not described), the baseline is 3. The description mentions 'priority level' which loosely maps to the priority parameter, but adds no syntax details, format constraints, or semantic meaning beyond the schema's enum values.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a clear action (Create) and resource (reminder) with a specific feature (priority level). However, it fails to distinguish from siblings like productivity_calendar_event or productivity_note that also create time-bound productivity entries.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Provides no guidance on when to use this tool versus productivity_calendar_event, productivity_note, or productivity_task_breakdown. No mention of prerequisites or trigger behavior.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other 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/ElromEvedElElyon/claw-mcp-toolkit'

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