Skip to main content
Glama

List Reminder Lists

list_reminder_lists
Read-onlyIdempotent

List all Apple Reminder lists or display reminders within a specific list. Use to see available lists or browse a list's contents.

Instructions

List all Apple Reminder lists, or show the contents of a specific list. Use when the user wants to know what lists they have or browse a specific list.

Args:

  • name (string, optional): If provided, shows reminders in that list. If omitted, lists all available lists.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameNoList name — omit to list all lists, provide to show contents

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.6/5.0
Behavior3/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint=false, so safety is covered. The description adds the meaningful behavioral detail that the tool has two modes depending on the name argument, but says nothing about ordering, counts, or output shape; with annotations carrying the safety profile, this is adequate but not rich.

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?

Two front-loaded sentences plus an Args block; the dual-mode behavior is stated up front before the parameter restatement. The Args section is mildly redundant with the schema description but not wasteful.

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 single-optional-parameter, read-only listing tool with no output schema, the description covers both call modes and when to use it. Missing only edge-case behavior (e.g., unknown list name) and result ordering, which are minor.

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 description coverage is 100% and the parameter's schema description ('omit to list all lists, provide to show contents') states the same dual-mode semantics as the description text. The description adds no syntax, format, or matching-behavior detail beyond the schema, so baseline 3 applies.

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?

The description states a specific verb and resource ('List all Apple Reminder lists') and adds a distinct second mode ('show the contents of a specific list'). It is clear what the tool does, though it does not explicitly distinguish itself from the near-sounding sibling show_reminders.

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 a clear usage context: 'Use when the user wants to know what lists they have or browse a specific list.' However, it names no alternatives and does not clarify when to prefer show_reminders or manage_reminder_list over this tool.

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