@rowvyn/servicetitan-mcp 2.5.0 → 2.5.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +19 -0
- package/README.md +2 -0
- package/build/chunks/chunk-NMP7L4BX.js +54 -0
- package/build/index.js +1 -1
- package/build/sse.js +1 -1
- package/build/streamable-http.js +1 -1
- package/package.json +3 -3
- package/build/chunks/chunk-MMQLAZ4R.js +0 -54
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,23 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/), and this project adheres to [Semantic Versioning](https://semver.org/).
|
|
6
6
|
|
|
7
|
+
## [2.5.2] - 2026-06-02
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
- **UTC-labeled fields preserved** — timestamp conversion now leaves values unchanged when the field name explicitly signals UTC, preventing misleading local-offset values under `*Utc` keys.
|
|
11
|
+
- **ServiceTitan validation errors surfaced** — field-level validation reasons from ServiceTitan error responses are included in client error messages.
|
|
12
|
+
- **Docker build** — Dockerfile now copies `scripts/` before `npm run build`, so container builds have the bundled build script.
|
|
13
|
+
- **Technician shift schemas** — technician shift create and bulk-delete inputs now match ServiceTitan's required `technicianIds`, `body`, `repeatType`, and `ids` fields.
|
|
14
|
+
|
|
15
|
+
### Changed
|
|
16
|
+
- **Scheduling capacity schema** — `scheduling_capacity_calculate` now exposes the required ServiceTitan capacity fields directly instead of accepting an opaque payload wrapper.
|
|
17
|
+
- **Tool catalog refreshed** — generated `TOOLS.md` now reflects the updated scheduling capacity description and latest intelligence tool descriptions.
|
|
18
|
+
|
|
19
|
+
## [2.5.1] - 2026-04-05
|
|
20
|
+
|
|
21
|
+
### Changed
|
|
22
|
+
- **Homepage URL** — npm package homepage now points to the Rowvyn ServiceTitan MCP case study.
|
|
23
|
+
|
|
7
24
|
## [2.5.0] - 2026-04-02
|
|
8
25
|
|
|
9
26
|
### Performance
|
|
@@ -239,6 +256,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/), and this
|
|
|
239
256
|
- Generated TOOLS.md tool catalog
|
|
240
257
|
- `.env.example` with all environment variables documented
|
|
241
258
|
|
|
259
|
+
[2.5.2]: https://github.com/montrellcruse/servicetitan-mcp/compare/v2.5.1...v2.5.2
|
|
260
|
+
[2.5.1]: https://github.com/montrellcruse/servicetitan-mcp/compare/v2.5.0...v2.5.1
|
|
242
261
|
[2.5.0]: https://github.com/montrellcruse/servicetitan-mcp/compare/v2.4.2...v2.5.0
|
|
243
262
|
[2.4.2]: https://github.com/montrellcruse/servicetitan-mcp/compare/v2.4.0...v2.4.2
|
|
244
263
|
[2.3.1]: https://github.com/montrellcruse/servicetitan-mcp/compare/v2.3.0...v2.3.1
|
package/README.md
CHANGED
|
@@ -9,6 +9,8 @@
|
|
|
9
9
|
|
|
10
10
|
The only MCP server for the ServiceTitan API — 467 tools across 15 domains, plus 10 intelligence tools that turn raw API data into business decisions.
|
|
11
11
|
|
|
12
|
+
Built by [**Rowvyn**](https://rowvyn.com) — [See the case study →](https://rowvyn.com/case-studies/servicetitan-mcp)
|
|
13
|
+
|
|
12
14
|
<p align="center">
|
|
13
15
|
<em>Connect any AI assistant to ServiceTitan's full API — CRM, dispatch, invoicing, payroll, and operational intelligence — through the Model Context Protocol.</em>
|
|
14
16
|
</p>
|