@rowvyn/servicetitan-mcp 2.4.0 → 2.4.1
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/.env.example +1 -1
- package/README.md +2 -2
- package/build/chunks/chunk-XORPTVFD.js +54 -0
- package/build/index.js +1 -1
- package/build/sse.js +3 -3
- package/build/streamable-http.js +2 -2
- package/package.json +1 -1
- package/build/chunks/chunk-HBUFFGNS.js +0 -54
package/.env.example
CHANGED
|
@@ -10,7 +10,7 @@ ST_READONLY=true # true | false (default: true)
|
|
|
10
10
|
ST_CONFIRM_WRITES=false # Require _confirmed: true on write operations (default: false)
|
|
11
11
|
ST_DOMAINS= # comma-separated: crm,pricebook,reporting (empty = all)
|
|
12
12
|
ST_LOG_LEVEL=info # debug | info | warn | error
|
|
13
|
-
ST_TIMEZONE= # IANA timezone for date alignment (e.g. America/New_York)
|
|
13
|
+
ST_TIMEZONE= # IANA timezone for date alignment and display conversion (e.g. America/New_York)
|
|
14
14
|
ST_MAX_RESPONSE_CHARS=100000 # Max characters in tool response before truncation
|
|
15
15
|
ST_ALLOWED_CALLERS= # Optional comma-separated caller allowlist (matches authInfo or proxy-injected caller headers when available)
|
|
16
16
|
# ST_RESPONSE_SHAPING=true # Set to false to disable response transformation (returns raw API data)
|
package/README.md
CHANGED
|
@@ -246,7 +246,7 @@ Copy `.env.example` to `.env` and fill in your credentials.
|
|
|
246
246
|
| `ST_MAX_RESPONSE_CHARS` | `100000` | Cap tool response size |
|
|
247
247
|
| `ST_DOMAINS` | *(all)* | Comma-separated domain allowlist (e.g. `crm,dispatch,reporting`) |
|
|
248
248
|
| `ST_LOG_LEVEL` | `info` | Log level: `debug`, `info`, `warn`, `error` |
|
|
249
|
-
| `ST_TIMEZONE` | `UTC` | IANA timezone for the tenant (e.g. `America/New_York`) —
|
|
249
|
+
| `ST_TIMEZONE` | `UTC` | IANA timezone for the tenant (e.g. `America/New_York`) — used for date-bound intelligence queries and local-time display conversion in all tool responses |
|
|
250
250
|
| `ST_RESPONSE_SHAPING` | `true` | Set to `false` to disable intelligence response transformation |
|
|
251
251
|
| `ST_CORS_ORIGIN` | _(none)_ | Allowed CORS origin for Streamable HTTP / SSE. Required for browser access. |
|
|
252
252
|
| `ST_ALLOWED_CALLERS` | _(none)_ | Comma-separated caller identity allowlist (e.g. `alice@example.com,svc-user`) |
|
|
@@ -254,7 +254,7 @@ Copy `.env.example` to `.env` and fill in your credentials.
|
|
|
254
254
|
| `ST_MCP_PORT` / `PORT` | `3100` | HTTP server port for Streamable HTTP and SSE transports |
|
|
255
255
|
| `ST_MCP_API_KEY` | _(none)_ | API key for authenticating remote MCP clients (required for HTTP transports) |
|
|
256
256
|
|
|
257
|
-
> **Set `ST_TIMEZONE`** to your tenant's local timezone. Without it, date-only queries (e.g. `startDate: "2026-02-01"`) are interpreted as UTC midnight — which can miss or include invoices and jobs near day boundaries for non-UTC tenants.
|
|
257
|
+
> **Set `ST_TIMEZONE`** to your tenant's local timezone. Without it, date-only queries (e.g. `startDate: "2026-02-01"`) are interpreted as UTC midnight — which can miss or include invoices and jobs near day boundaries for non-UTC tenants, and tool responses will keep timestamps in UTC instead of your local display timezone.
|
|
258
258
|
|
|
259
259
|
Boolean env vars accept: `true`, `false`, `1`, `0` (case-insensitive).
|
|
260
260
|
|