Skip to main content
Glama
Medina-Digital-A-i

Jobber MCP Connector

jobber_list_clients

Get client contact details from Jobber, including name, email, phone, and billing address. Filter by name or company for targeted results.

Instructions

List clients from Jobber. Returns name, email, phone, and billing address. Supports optional search by name or company.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
afterNoPagination cursor for fetching the next page
limitNoNumber of clients to return (default: 25, max: 100)
searchNoOptional search term to filter clients by name or company

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.8/5.0
Behavior3/5

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

No annotations are provided, so the description carries the behavioral disclosure burden. It does disclose the returned fields and search filtering, which is useful. However, it omits pagination behavior, continuation semantics, and any caveats about result completeness or ordering. 'List' implies a read-only operation, but side-effect and safety traits are not explicitly stated.

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 two short sentences with no filler. The core action is front-loaded, followed by return-field details and search behavior. Every sentence 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, read-only list tool with fully documented optional parameters, the description provides the key return fields and search behavior. It lacks an explicit mention of pagination continuation, but the 'after' parameter schema already covers that. No output schema exists, so the stated return fields help fill that gap.

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 repeats the search-by-name-or-company semantics already present in the schema and adds no meaning for the 'limit' or 'after' parameters. It provides no extra value beyond the structured parameter descriptions.

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 uses a specific verb and resource: 'List clients from Jobber.' It also states the returned fields (name, email, phone, billing address) and the optional search capability. This clearly distinguishes it from sibling tools focused on jobs, invoices, quotes, or schedule operations.

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?

Usage is implied: an agent should call this when it needs client records. However, the description gives no explicit guidance about when to prefer this tool over siblings, nor does it mention any exclusions or alternative tools. The resource name makes the use case fairly obvious, but routing guidance is minimal.

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