Skip to main content
Glama

Get available times

acuity_availability_times
Read-only

List available time slots on a given date for an appointment type. Acuity REST: GET /availability/times.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
dateYesDate to check, formatted YYYY-MM-DD, e.g. '2026-08-15'.
timezoneNoIANA timezone for the returned times, e.g. 'America/New_York'.
calendarIDNoRestrict to a specific calendar id.
appointmentTypeIDYesAppointment type id to check availability for (required).

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A3.8/5.0
Behavior3/5

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

Annotations already declare 'readOnlyHint: true', so the description does not need to repeat that. It adds the API endpoint reference, which is minor behavioral context. No further behavioral traits (e.g., rate limits, response structure) are disclosed.

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 crisp sentences with no wasted words. The first sentence communicates the core purpose, and the second provides a helpful API reference. Every part earns its place.

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 simple list tool with full schema coverage and no output schema, the description adequately covers the essentials. It could optionally mention that results are read-only (though annotations handle that) or that an empty list implies no availability, but it is sufficiently complete given the tool's complexity.

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 baseline is 3. The description does not add any information beyond what the schema already provides for parameters like timezone or calendarID. It mentions 'given date' and 'appointment type' but those are already specified in required fields.

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 clearly states the action ('List'), the resource ('available time slots'), and the constraints ('on a given date for an appointment type'). It effectively distinguishes from sibling 'acuity_availability_dates' by focusing on times within a specific date.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage for checking times on a specific date but provides no explicit guidance on when to use this tool versus alternatives like 'acuity_availability_dates' or when to avoid it. No exclusions or prerequisites are mentioned.

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
Disambiguation5/5

Each tool targets a distinct resource and action (appointments, clients, calendars, etc.) with clear naming and no overlapping functionality.

Naming Consistency5/5

All tools follow the consistent pattern 'acuity_<verb>_<noun>' with uniform verb choices (list, get, create, cancel, reschedule) and proper pluralization.

Tool Count5/5

18 tools cover the essential aspects of a scheduling system (availability, appointments, clients, calendars, etc.) without being excessive or insufficient.

Completeness4/5

Core scheduling operations are well covered, but missing update and delete for clients, and read-only access to other entities (e.g., appointment types, blocks) may limit full lifecycle management.