Skip to main content
Glama
montrellcruse

ServiceTitan MCP

settings_activity_codes_export

Read-onlyIdempotent

Retrieve incremental activity-code export data for Settings workflows. Use the continuation token to fetch pages and poll again only while more records are available.

Instructions

Read the incremental activity-code export feed for Settings workflows. This is the same feed as export_activity_codes; use whichever name is available and do not fetch both. Continue immediately with continueFrom while hasMore is true; when false, retain it and wait before polling again. includeRecentChanges may repeat records.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
fromNoContinuation token from previous response or custom start date
includeRecentChangesNoPrioritize recent changes in the export stream

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.9/5.0
Behavior5/5

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

Beyond the readOnly/idempotent annotations, the description discloses important behavioral traits: continuation semantics with continueFrom/hasMore, the need to wait before polling when hasMore is false, and the fact that includeRecentChanges may repeat records. These details materially affect how an agent invokes and interprets the tool.

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 three sentences with no filler. It front-loads the core purpose, then immediately resolves the alias ambiguity, then gives the pagination protocol and the duplicate-records caveat. Every sentence earns its place.

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?

The description covers the tool's identity, its relationship to a sibling, the pagination loop, and the duplicate-record caveat, all while the output schema handles return-value details. Nothing critical is missing for an agent to invoke the tool correctly.

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 schema already documents both parameters with 100% coverage, so the baseline is 3. The description adds value by explaining how 'from' relates to the continueFrom token and that includeRecentChanges may cause duplicate records, which enriches the agent's understanding beyond the raw schema.

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 names a specific action ('Read'), a specific resource ('incremental activity-code export feed'), and a context ('Settings workflows'). It also explicitly distinguishes itself from its sibling export_activity_codes by identifying them as the same feed, so an agent can disambiguate without opening schemas.

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?

The description gives explicit guidance: 'This is the same feed as export_activity_codes; use whichever name is available and do not fetch both.' It also provides concrete operational instructions for pagination and polling, which tells the agent exactly how to consume the feed.

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