Skip to main content
Glama
This connector has been deprecated

This connector has been replaced by Reflecto.

Remind me

remind_me

Schedule a notification to appear on the user's phone at a specific future time. Use this when the user asks to be reminded of something later. at is an absolute Unix timestamp in SECONDS, between 60 seconds and 365 days from now. The phone fires it locally once it receives the setup message, so the exact second is not guaranteed (the alarm is inexact to preserve battery). Delivery of that setup message is best-effort, like any other push to the phone — a phone that never receives it never arms the reminder. Returns a reminder_id you can pass to cancel_reminder.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
atYesAbsolute Unix epoch timestamp in SECONDS when the reminder should fire. Must be 60 seconds to 365 days from now (server-enforced).
messageYesNotification text delivered when the reminder fires. 1-500 characters (server-enforced).

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
fire_atYesUnix seconds this reminder is scheduled for (echoes the requested `at`).
warningsYesDelivery caveats; empty array if none.
reminder_idYesPass to cancel_reminder to call this off.

TDQS

A4.5/5.0
Behavior5/5

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

The annotations already show this is a non-read-only, non-idempotent action, but the description adds meaningful behavioral caveats: alarms are inexact to preserve battery, delivery is best-effort, and a phone that never receives the setup message never arms the reminder. It also discloses the reminder_id return value, which is the natural hook for cancel_reminder. This goes well beyond what annotations or schema reveal.

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

Conciseness5/5

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

The description is compact and front-loaded: purpose, use case, parameter constraint, delivery caveat, and return value appear in a sensible order with no filler. Every sentence contributes a distinct piece of information an agent needs before calling the tool.

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

Completeness5/5

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

With two parameters, an output schema, and clear sibling relationships, the description covers all important operational risks: timing units, server-enforced bounds, local firing semantics, best-effort delivery, and the returned reminder_id. There is nothing material an agent would need to know about correct invocation that is missing.

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?

Schema coverage is 100%, so the schema already documents both parameters. The description reinforces the critical facts that 'at' is an absolute Unix timestamp in SECONDS and must be within 60 seconds to 365 days, but it does not introduce meaning beyond what the schema already states. Baseline 3 is appropriate.

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

Purpose5/5

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

The description opens with a specific verb and resource: 'Schedule a notification to appear on the user's phone at a specific future time.' This clearly distinguishes it from immediate-send siblings like send_notification and pairs naturally with cancel_reminder. An agent can confidently identify what this tool does without needing to inspect the schema.

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

Usage Guidelines4/5

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

It gives an explicit when-to-use trigger: 'Use this when the user asks to be reminded of something later.' It does not explicitly state when-not-to-use or name an alternative like send_notification for immediate delivery, so it stops one step short of full routing guidance. Still, the context is clear enough for correct selection in most cases.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.5/5.0
Disambiguation5/5

Each tool targets a distinct action: scheduling vs cancelling reminders, pushing vs ringing a phone, sending vs receiving files/shared items, and requesting vs polling approvals. The only close pair, send_notification and remind_me, is clearly separated by immediacy vs future scheduling, and the descriptions reinforce the boundary.

Naming Consistency5/5

All tool names follow a consistent snake_case verb_noun pattern: cancel_reminder, check_reply, get_shared_items, list_devices, request_approval, send_file, send_notification. Minor possessive forms like find_my_phone and remind_me still fit the imperative verb-first style without creating confusion.

Tool Count5/5

Nine tools is well within the ideal range and each one earns its place in a personal-device integration server. The surface covers notifications, reminders, approvals, shared items, file delivery, device discovery, and phone location without redundant or filler tools.

Completeness4/5

Core workflows are covered: reminders can be scheduled and cancelled, approvals can be requested and polled, notifications can be sent, and shared items can be read incrementally. Minor gaps exist, such as no way to cancel a pending approval and no update mechanism for reminders, but these are workable and the server is explicitly stateless about some of them.

Resources