Skip to main content
Glama

meeting_overlap

Find meeting slots that overlap across multiple participants' local work hours on a given date. Provide each person's timezone and work window to get shared availability.

Instructions

Find overlapping meeting slots for N participants with local work hours on a date. Uses local date-fns-tz / Intl only — no external time APIs.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
dateNoYYYY-MM-DD (default: today UTC).
maxSlotsNoCap returned slots (default 50).
stepMinutesNoSlot step (default 15).
participantsYes[{ zone, workStart, workEnd, name? }]
durationMinutesNoMeeting length (default 30).

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.3/5.0
Behavior3/5

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

With no annotations, the description carries the full behavioral burden, and it does disclose one real trait: computation is local (date-fns-tz / Intl, no external time APIs), implying offline/deterministic behavior. It omits behavior when no overlap exists, invalid-zone handling, DST edge cases, and the return format.

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?

Two sentences, no filler, with the core purpose front-loaded and the implementation note kept as a brief trailing clause. Every sentence earns its place.

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

Completeness3/5

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

There is no output schema and no annotations, so the description should ideally describe the returned slot structure (times, timezones, per-participant fit). It covers inputs well enough but leaves the result shape and edge-case behavior unstated for a moderately complex nested-parameter tool.

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%, so all five parameters (date, maxSlots, stepMinutes, participants, durationMinutes) are already documented with defaults and formats. The description only adds high-level framing ('N participants with local work hours'), 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?

Specific verb+resource: 'Find overlapping meeting slots for N participants with local work hours on a date' clearly states what the tool computes. It is readily distinguishable from timezone-conversion siblings like convert_timezone, but the description never names or contrasts those siblings explicitly.

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?

No when-to-use context, no prerequisites, and no mention of alternatives such as what_time_when or list_common_zones. The agent must infer that scheduling overlap is the intended scenario from the purpose statement alone.

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