Skip to main content
Glama

Score team timezone friction + find the meeting window

find_meeting_slot
Read-onlyIdempotent

Given a set of cities/timezones and each participant's local working hours, find the longest UTC window where everyone is simultaneously within their working day (DST-accurate), AND score the team's overall timezone friction. Returns the overlap in UTC and in each participant's local time (or null with the best partial coverage), plus a friction block: a 0–100 score, grade (Effortless/Manageable/Strained/Broken), daily shared hours, coverage, and the loneWolf — the member whose removal would free the most team overlap. Useful for scheduling and for hiring/team-composition decisions.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
endNoDefault working-window end, minutes from local midnight (default 1080 = 18:00).
dateNoReference date (ISO YYYY-MM-DD) for DST. Defaults to today (UTC).
hoursNoOptional per-zone overrides aligned to `zones`, e.g. '540-1080;420-720'.
startNoDefault working-window start, minutes from local midnight (default 540 = 09:00).
zonesYesIANA timezone identifiers, e.g. 'Europe/London'.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
okNo
overlapNo
frictionNo
referenceDateNo
bestPartialCountNo

TDQS

A4.4/5.0
Behavior5/5

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

Annotations already cover readOnlyHint, idempotentHint, and destructiveHint. The description goes well beyond those by disclosing DST-accuracy, the fallback behavior of returning 'null with the best partial coverage', and the detailed shape of the `friction` block including the `loneWolf` concept. This gives an agent a strong behavioral model of what the tool will compute and return.

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?

The description is front-loaded with the core purpose, then moves to the return contract, then to use cases. It is somewhat detailed, especially around return values even though an output schema exists, but the structure makes it easy to scan and every sentence contributes meaningful selection or behavioral information.

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 tool with this complexity—5 parameters, 1 required, and an output schema—the description covers input scenario, algorithm behavior, return semantics, and practical use cases. The presence of an output schema reduces the burden for return-value detail, but the description is still complete enough for an agent to correctly select and invoke the 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 the schema itself already documents all five parameters. The description adds general context ('each participant's local working hours') but does not provide new parameter-level meaning beyond the schema. 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 names a specific verb ('find'), a specific resource ('the longest UTC window where everyone is simultaneously within their working day'), and a second distinct deliverable ('score the team's overall timezone friction'). It clearly distinguishes this tool from the sibling tools, none of which target meeting-window discovery or timezone friction scoring.

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 explicitly states the intended contexts: 'Useful for scheduling and for hiring/team-composition decisions.' It does not name alternatives or exclusion conditions, but no sibling tool appears to compete with this capability, so the absence of exclusions is acceptable.

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

A3.9/5.0
Disambiguation3/5

Several tools occupy adjacent territory: check_travel_residency explicitly supersedes check_residency, check_schengen, and check_tax_residency_risk, and the cost-of-living family (arrival_cost, compare_total_cost, compare_housing, estimate_micro_costs, calculate_ppp, localize_salary) has overlapping price-level concepts. The detailed descriptions mostly clarify boundaries, but an agent selecting by name alone could easily pick the wrong residency or cost tool.

Naming Consistency4/5

Most tools follow a clean verb_noun snake_case pattern with recognizable prefixes (compare_*, check_*, find_*, calculate_*), which makes the set predictable. Deviations like arrival_cost, passport_power, required_rate, and the acronym-heavy calculate_ppp keep it from being perfectly uniform.

Tool Count3/5

26 tools is a heavy surface, and at least three of the check_* tools are explicitly superseded by check_travel_residency, adding redundant weight. The broad geo-arbitrage/nomad domain justifies much of the breadth, but the set feels closer to a full toolkit than a focused server.

Completeness4/5

The toolset covers the core remote-work and geo-arbitrage decision space: cost of living, purchasing power, tax residency risk, nomad visas, housing, healthcare, climate, connectivity, holidays, salary localization, FIRE, livability, and even team timezone planning. Gaps are minor—no family-size cost tool, no immigration/citizenship pathway data, and no dedicated safety/crime dataset beyond the livability composite—but agents can work around them.

Resources