Skip to main content
Glama
montrellcruse

ServiceTitan MCP

people_trucks_list

Read-onlyIdempotent

Retrieve a paginated list of inventory trucks, filtered by IDs, active status, date ranges, or external data values, to locate specific vehicles.

Instructions

List one requested page of inventory trucks, optionally filtered by IDs, active state, dates, or external-data mapping. externalDataKey and externalDataValues must be supplied together.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idsNoComma-separated truck IDs (maximum 50)
pageNoPage number (starts at 1)
sortNoSort: Field (default), +Field (asc), or -Field (desc). Fields: Id, ModifiedOn, CreatedOn
activeNoFilter by active statusTrue
pageSizeNoRecords per page (default 50)
includeTotalNoInclude total count in response
createdBeforeNo
modifiedBeforeNo
externalDataKeyNoExternal data key
createdOnOrAfterNo
modifiedOnOrAfterNo
externalDataValuesNoExternal data values
externalDataApplicationGuidNoExternal data application GUID

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changedv3.0.0
    • changedOutput schema / (root)
      Previous value: -nullNew value: +{
      +  "$schema": "http://json-schema.org/draft-07/schema#",
      +  "additionalProperties": true,
      +  "properties": {},
      +  "type": "object"
      +}
  2. First observedv2.5.1

TDQS

A4.4/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint=false, so the safety profile is known. The description adds meaningful behavioral detail: pagination behavior, support for multiple filter categories, and the important constraint that externalDataKey and externalDataValues must be supplied together.

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 sentences with no filler. The primary action and resource are front-loaded, followed by a compact enumeration of filters and a critical pairing constraint. Every word contributes useful information.

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?

Given the output schema, annotations, and self-descriptive parameter names, the description covers the essential agent-facing concerns: what is listed, pagination, filter options, and the external-data pairing rule. It could explicitly state that filters are combinable, but this is a minor gap.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The description adds value beyond the schema by grouping parameters into conceptual filter categories (IDs, active state, dates, external-data mapping) and by exposing the dependency between externalDataKey and externalDataValues, which the schema does not state. The undocumented date parameters are at least covered by the 'dates' grouping.

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 ('List'), a specific resource ('inventory trucks'), and the page-based scope ('one requested page'). It also enumerates the main filtering dimensions, making the tool's purpose immediately distinguishable from the many sibling list tools.

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 clearly conveys when to use the tool: when a page of inventory trucks is needed, with optional filters. It does not explicitly name alternatives or exclusions, but the resource and behavior are unambiguous enough that an agent can select it correctly from the sibling set.

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

Deploy Server

Other Tools