Skip to main content
Glama
montrellcruse

ServiceTitan MCP

accounting_journal_entries_list

Read-onlyIdempotent

List journal-entry headers by IDs, numbers, status, dates, or timestamps to find entry IDs for summary or line-level detail lookups.

Instructions

List one requested page of journal-entry headers using IDs, numbers, sync status, posted dates, and created or modified timestamps. Use this to discover entry IDs, then choose accounting_journal_entries_get_summary for summary rows or accounting_journal_entries_get_details for line-level rows.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idsNoComma-delimited journal entry IDs (max 50)
nameNoJournal entry name contains
pageNoPage number (starts at 1)
sortNoSort: Field (default), +Field (asc), or -Field (desc). Fields: Id, Number, Name, Status, CreatedOn, ExportedOn, ExportedBy, PostDate
numberToNoEntry number upper bound
pageSizeNoRecords per page (default 50)
postedToNoPosted on or before UTC timestamp
statusesNoEntry statuses
refNumberNoTransaction reference number contains
exportedByNoComma-delimited user IDs who exported entries
exportedToNoExported on or before UTC timestamp
numberFromNoEntry number lower bound
postedFromNoPosted on or after UTC timestamp
vendorNameNoVendor name contains
customFieldNoCustom field name/value filters
customerNameNoCustomer name contains
exportedFromNoExported on or after UTC timestamp
includeTotalNoInclude total count in response
locationNameNoLocation name contains
syncStatusesNoSync statuses
createdBeforeNo
modifiedBeforeNo
businessUnitIdsNoComma-delimited business unit IDs (max 50)
createdOnOrAfterNo
transactionTypesNoTransaction types
modifiedOnOrAfterNo
serviceAgreementIdsNoComma-delimited service agreement IDs (max 50)
transactionPostedToNoContains transaction posted on or before UTC timestamp
inventoryLocationNameNoInventory location name contains
transactionPostedFromNoContains transaction posted on or after UTC timestamp

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv3.0.0
  2. Removedv2.6.2
  3. First observedv2.5.1

TDQS

A4.2/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, openWorldHint=true, and destructiveHint=false, so the safety profile is fully covered. The description adds useful behavioral context beyond annotations: results are paginated ('one requested page') and header-level rather than full entries. No contradictions 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.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences of roughly 50 words, with the core action front-loaded and the usage routing in the second sentence. Every clause earns its place — there is no fluff, tautology, or redundant restatement of the tool name.

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 30-parameter, zero-required listing tool with an output schema and safety annotations, the description covers purpose, pagination behavior, and the follow-up workflow. Return values are covered by the output schema and parameters by the schema (87% coverage), so the only minor gap is the absence of guidance on typical filter combinations — not essential for correct invocation.

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 87%, so the 30 parameters are already well documented in the schema. The description adds a high-level grouping of filter categories (IDs, numbers, sync status, posted dates, created/modified timestamps) that maps to schema fields, but it does not add syntax, constraints, or meaning beyond what the schema provides. Baseline 3 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 one requested page of journal-entry headers'), names the filter dimensions (IDs, numbers, sync status, posted dates, created/modified timestamps), and explicitly notes it returns headers only. This differentiates it from the get_summary and get_details siblings without needing to open their 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 explicitly states when to use this tool ('Use this to discover entry IDs') and routes to the two relevant alternatives with their selection conditions — accounting_journal_entries_get_summary for summary rows and accounting_journal_entries_get_details for line-level rows. An agent gets a clear decision path with no inference required.

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