Skip to main content
Glama

NudgeBell

Create an escalating reminder

create_reminder

Schedule a reminder that escalates the way the user set it and stops when they acknowledge. It fires from NudgeBell's own servers, so it still happens if this agent, this machine, or this conversation is long gone.

A reminder is one step or up to five. Each step is a channel, a message, and how many minutes after the trigger it fires. A single email, a single call, or a chain across any channels in any order with any gaps are all fine: build exactly what the user asked for, and do not add steps or channels they did not ask for. If the user acknowledges at any step (presses 1 on the call, taps the link in a text, clicks the button in the email), every remaining step is cancelled automatically.

You do not choose who is contacted. NudgeBell only ever contacts the account owner's own verified phone and email; there is no recipient parameter and requests that try to add one are rejected. You also do not need to send a timezone — the account's timezone is used.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
stepsYesThe escalation chain, in order. 1 to 5 steps.
titleYesShort label for the reminder, e.g. 'Call the dentist'. Max 100 characters.
timezoneNoOptional IANA timezone. Normally omit this — the account's own timezone always wins and a conflicting value is ignored.
recurrenceNoRepeat the whole escalation chain on this cadence, starting at trigger_at and always at the same local time in the account's timezone. Use 'yearly' for birthdays and anniversaries, 'monthly' for renewals. Default 'none'. Monthly/yearly dates on the 29th-31st fall to the last day of a shorter month.
trigger_atYesWhen the first step fires. Prefer plain local time in the user's own words converted to 'YYYY-MM-DDTHH:mm' (e.g. '2026-09-05T08:00' for tomorrow at 8am) — it is interpreted in the account's timezone. A full ISO-8601 instant with an offset or 'Z' also works. Must be in the future and at most 5 years ahead.
descriptionNoOptional notes. Max 500 characters.
idempotency_keyNoOptional. Pass a stable value if you might retry this call — retries with the same key return the original reminder instead of creating a second one.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.5/5.0
Behavior5/5

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

With no annotations provided, the description carries the full behavioral burden — and it delivers thoroughly. It discloses server-side execution ('fires from NudgeBell's own servers, so it still happens if this agent... is long gone'), automatic cancellation of remaining steps on acknowledgement, the account-owner-only contact restriction, and rejection of recipient requests. It even surfaces that 'the create response reports the estimate,' which matters for a cost-incurring mutation tool.

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?

Three dense paragraphs, front-loaded with the core behavior, then step structure, then constraints. Nearly every sentence earns its place; the only minor waste is that the acknowledge-and-cancel behavior is stated in the opening sentence and re-explained in detail in the second paragraph.

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

Completeness4/5

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

For a 7-parameter tool with a nested steps array, no annotations, and no output schema, the description covers the behavioral essentials: escalation semantics, step limits, cancellation, server persistence, and recipient/timezone constraints. The main gap is the response shape — the response estimate is only mentioned inside the channel enum description rather than in the main description — but an agent still has everything needed to invoke correctly.

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

Parameters4/5

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

Schema coverage is 100%, so the baseline is 3, but the description adds invocation-level meaning the schema cannot express: don't pad the steps array with unrequested channels, there is no recipient field to fill, and the timezone parameter should normally be omitted. These notes actively steer agent behavior rather than restating property descriptions.

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?

States a specific verb and resource — 'Schedule a reminder' — and characterizes the behavior precisely: 'escalates the way the user set it and stops when they acknowledge.' The creation intent is unambiguous and clearly distinct from the sibling set (cancel_reminder, get_reminder, pause_reminder, list_reminders), so an agent can route to this tool without opening any 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?

Provides clear usage context with exclusionary rules: 'build exactly what the user asked for, and do not add steps or channels they did not ask for,' 'there is no recipient parameter and requests that try to add one are rejected,' and 'you do not need to send a timezone.' These tell the agent when NOT to do something, which strongly shapes invocation. It stops short of explicitly naming alternative tools for when-to-use decisions, but the create-vs-manage split across siblings is evident.

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.

Resources