Skip to main content
Glama
montrellcruse

ServiceTitan MCP

dispatch_installed_equipment_get

Read-onlyIdempotent

Retrieve a specific installed-equipment record by ID to view its location and equipment details. Use this when you need one verified record without searching by filters.

Instructions

Retrieve one installed-equipment record by ID, including its location and equipment details. Use dispatch_installed_equipment_list to search by location, IDs, active state, or date ranges.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesInstalled equipment ID

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.3/5.0
Behavior3/5

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

Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and destructiveHint, covering the safety profile. The description adds the response scope ('including location and equipment details') but does not add extra behavioral context like error behavior, authorization needs, or open-world implications. Given the strong annotations, a 3 is appropriate.

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 purposeful sentences: the first states the action and scope, the second routes to the correct sibling tool. No filler, no repetition of schema or annotation 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 single-parameter, read-only getter with an output schema and rich annotations, the description fully covers what an agent needs to select and invoke it correctly. It identifies the operation, the ID input, the response scope, and the alternative list 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 coverage is 100%, so the only parameter 'id' is already documented with a description ('Installed equipment ID'). The description reinforces that the lookup is by ID but adds no new semantic detail beyond the schema. Baseline 3 applies.

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 ('Retrieve') with a clear resource ('one installed-equipment record by ID') and states the included details (location and equipment). It clearly distinguishes this tool from dispatch_installed_equipment_list by positioning that sibling as the search-oriented alternative.

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

Usage Guidelines5/5

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

It explicitly tells the agent when to use the sibling tool instead: 'Use dispatch_installed_equipment_list to search by location, IDs, active state, or date ranges.' This gives a direct alternative and its selection criteria, leaving no ambiguity about when to choose this getter over the list.

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