Skip to main content
Glama
chrischall
by chrischall

List scheduled visits

jobber_list_appointments
Read-onlyIdempotent

Retrieve scheduled client visits from Jobber Client Hub, grouped by Today, Upcoming, and Past, with dates, times, locations, and confirmation status.

Instructions

Scheduled visits from a provider's Jobber Client Hub, grouped Today / Upcoming / Past. Each visit carries date, weekday, time, arrival window, location and confirmation state. time is null when the provider chooses not to show times. Read-only.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
hubNoWhich provider hub to read, by label. Omit when only one is configured.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changedv0.4.0
    • changedInput schema / $schema
      Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
  2. First observedv0.0.0

TDQS

A4/5.0
Behavior4/5

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

Annotations already declare read-only, idempotent, and open-world behavior. The description adds useful context: visits are grouped Today/Upcoming/Past, and 'time' is null when the provider chooses not to show times. No contradiction with annotations.

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 compact, front-loads the resource and grouping, and includes useful field-level context. The final 'Read-only' sentence is slightly redundant with the annotation but does not meaningfully hurt clarity.

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 list operation with one optional parameter, the description is complete: it names the source, grouping, fields, and null semantics. There is no output schema, and the field listing in the description sufficiently sets expectations.

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 only parameter, 'hub', is clearly explained. The description connects the tool to the hub concept but adds no parameter-level detail beyond the schema, so the baseline score 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 states a specific verb and resource ('list scheduled visits'), names the source (provider's Jobber Client Hub), and details the grouping and field set. This is readily distinguishable from sibling tools like jobber_list_invoices or jobber_list_quotes.

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 clearly implies this tool is for retrieving scheduled visits, and sibling names make the resource distinction obvious. However, it does not explicitly state when to prefer this tool over alternatives or provide when-not-to-use guidance.

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