Skip to main content
Glama

important_dates_get

Read-only

Retrieve upcoming birthdays and important dates within a week or any custom window. Check what's coming up this week, later today, or further ahead.

Instructions

List upcoming birthdays and important dates inside the weekly window.

Defaults to seven days so a "what's coming up this week" question and the morning brief share the same horizon. Pass a larger window to look further ahead; pass 0 for only dates still later today.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
within_daysNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

A4.6/5.0
Behavior4/5

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

Annotations already mark the tool as read-only, and the description adds practical behavioral detail: the default seven-day window, the effect of passing a larger window, and the meaning of passing 0. This goes beyond the annotation and helps the agent reason about results.

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, front-loaded with the core purpose, and every subsequent sentence adds useful behavioral or parameter guidance. No wasted words or redundant restatement of the tool name.

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?

For a simple, single-parameter read-only listing tool with an output schema, the description covers the essential semantics: what is listed, the default horizon, and how to override it. Nothing important is missing for an agent to select and invoke it correctly.

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

Parameters5/5

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

Schema description coverage is 0%, but the description fully compensates by explaining the only parameter, within_days: its default, how to extend the window, and what 0 means. The parameter name clarifies the unit, so an agent can invoke it correctly.

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: 'List upcoming birthdays and important dates'. It also scopes the behavior to 'inside the weekly window', which distinguishes it from sibling tools like important_date_set and agenda_get without ambiguity.

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?

The description provides clear usage context: it aligns with 'what's coming up this week' questions and the morning brief, and explains how to adjust the time horizon. It does not explicitly name alternative tools or say when not to use it, but the context is strong enough for an agent to know when this tool fits.

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