@chrischall/mcp-utils 0.15.0 → 0.16.0

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/README.md CHANGED
@@ -32,7 +32,7 @@ import light:
32
32
  | Import | Contents |
33
33
  | --- | --- |
34
34
  | `@chrischall/mcp-utils` | core barrel: `server` + `response` + `errors` + `config` + `fs` + `http` + `concurrency` + `dates` + `zod` + `auth` + `scrape` |
35
- | `@chrischall/mcp-utils/session` | session registry, session store, token manager, cookie-session manager |
35
+ | `@chrischall/mcp-utils/session` | session registry, session store, state persistence, token manager, cookie-session manager |
36
36
  | `@chrischall/mcp-utils/fetchproxy` | fetchproxy transport adapter, bot-wall / retry / concurrency helpers |
37
37
  | `@chrischall/mcp-utils/html` | opt-in HTML scraping helpers (needs `node-html-parser`) |
38
38
  | `@chrischall/mcp-utils/scrape` | convenience alias for the zero-dep `scrape` module (also in the core barrel) |
@@ -485,6 +485,72 @@ Replaces the hand-rolled re-login / single-flight / 401-replay code in
485
485
  `artsonia-mcp`, `canvas-parent-mcp`, `evite-mcp`, `signupgenius-mcp`, and
486
486
  `skylight-mcp`.
487
487
 
488
+ #### Surviving a restart — `StatePersistence` *(opt-in)*
489
+
490
+ Both managers own a credential only for the life of the process. On a
491
+ scale-to-zero host that means a full login on every cold start — children idle
492
+ out after ten minutes, several services rate-limit the login endpoint, and one
493
+ escalates repeated attempts to a captcha that breaks server-side auth outright.
494
+ Pass `persistence` and the credential survives instead:
495
+
496
+ ```ts
497
+ import {
498
+ TokenManager,
499
+ createFileStatePersistence,
500
+ resolveStateDir,
501
+ type BearerTokens,
502
+ } from '@chrischall/mcp-utils/session';
503
+ import { join } from 'node:path';
504
+
505
+ const tokens = new TokenManager({
506
+ // Function form: run the login ONLY when nothing usable was restored.
507
+ initial: () => loginWithPassword(),
508
+ refresh: (rt) => exchangeRefreshToken(rt),
509
+ persistence: createFileStatePersistence<BearerTokens>({
510
+ filePath: join(resolveStateDir({ subdir: '.acme-mcp' }), 'tokens.json'),
511
+ }),
512
+ });
513
+ ```
514
+
515
+ What that buys, in order of how often it applies: a stored token that is still
516
+ valid costs **nothing**; a stored token that has expired but carries a refresh
517
+ token costs **one refresh** instead of a login; only an empty or unusable store
518
+ runs `initial`. A refresh token revoked between runs is not terminal — the
519
+ stored copy is discarded and the login re-runs, so a stale file cannot brick the
520
+ server. A *transient* refresh failure is treated differently: a `RateLimitedError`,
521
+ a `RequestTimeoutError` or a 5xx `ApiError` surfaces to the caller with the
522
+ refresh token left intact, because destroying a valid credential and burning a
523
+ login on a passing outage is the cost this feature exists to avoid. Override
524
+ `isRefreshRevoked` for a service that signals revocation some other way.
525
+
526
+ `createFileStatePersistence` writes atomically (temp file + rename), leaves the
527
+ file `0600`, and creates any missing directory `0700` — but does **not**
528
+ re-permission a directory that already exists, since a bare `resolveStateDir()`
529
+ is `$HOME` and `mcp-host` creates the data dir before the child starts. It never
530
+ throws: a read-only or full disk degrades to in-memory operation, costing a
531
+ login rather than a failed request. `resolveStateDir` prefers `MCP_DATA_DIR` — the variable `mcp-host`
532
+ injects for a registration with `state.dataDir: true` — then `HOME`, then the OS
533
+ home directory. It reads both through `readEnvVar`, so blank values, the
534
+ `'null'` / `'undefined'` sentinels and unexpanded `${...}` placeholders are all
535
+ treated as unset (`MCP_DATA_DIR=null` would otherwise be a *relative* `./null`
536
+ directory, quietly parking the credential under the process cwd).
537
+
538
+ > On `mcp-host`, set `state.dataDir: true` in the repo's `mint.yaml` when you
539
+ > adopt this. Without it the child's `$HOME` is on the container rootfs, which
540
+ > an idle-stop discards — the runner's unpersisted-state detector will report
541
+ > the omission, but the writes still vanish.
542
+
543
+ `CookieSessionManager` takes the same option, storing `{ session, sessionAt }`
544
+ so `maxAgeMs` keeps counting from the original login. Its `invalidate()` clears
545
+ the stored copy — without that, a session detected as expired would be read back
546
+ off disk and the expiry would loop.
547
+
548
+ Persistence is **opt-in throughout**: a manager constructed without it behaves
549
+ exactly as before, and no credential reaches a disk because a dependency was
550
+ upgraded. The interface is two methods (`load` / `save`, plus an optional
551
+ `clear`), each allowed to be async, so a backend other than the local filesystem
552
+ can be dropped in.
553
+
488
554
  ### `fetchproxy` — transport adapter *(subpath, optional peer)*
489
555
 
490
556
  ```ts
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Session scaffolding for the MCP fleet — four related-but-distinct surfaces
2
+ * Session scaffolding for the MCP fleet — five related-but-distinct surfaces
3
3
  * consolidated behind one subpath (`@chrischall/mcp-utils/session`):
4
4
  *
5
5
  * 1. {@link SessionRegistry} — an *ephemeral, in-memory* registry of signed-in
@@ -12,12 +12,18 @@
12
12
  * (0600 file / 0700 dir), normalized keys, and a most-recently-used "active"
13
13
  * pointer. Used by ofw/creditkarma/honeybook.
14
14
  *
15
- * 3. {@link TokenManager} — a bearer-token lifecycle manager: proactive refresh
16
- * inside a 5-minute skew window, reactive 401-replay, and a single-flight
17
- * semaphore so concurrent callers coalesce into ONE refresh. Used by
18
- * skylight/canvas/creditkarma/honeybook/zola.
15
+ * 3. {@link StatePersistence} — the opt-in seam that lets the two managers
16
+ * below survive a process restart, with {@link createFileStatePersistence}
17
+ * (atomic, 0600) and {@link resolveStateDir} (`MCP_DATA_DIR` `HOME`) as
18
+ * the disk-backed default. Without it a scale-to-zero host re-runs a full
19
+ * login on every cold start, against endpoints that often rate-limit it.
19
20
  *
20
- * 4. {@link CookieSessionManager} — the cookie-session analog of TokenManager:
21
+ * 4. {@link TokenManager} — a bearer-token lifecycle manager: a lazily
22
+ * bootstrapped login, proactive refresh inside a 5-minute skew window,
23
+ * reactive 401-replay, and a single-flight semaphore so concurrent callers
24
+ * coalesce into ONE exchange. Used by skylight/canvas/creditkarma/honeybook/zola.
25
+ *
26
+ * 5. {@link CookieSessionManager} — the cookie-session analog of TokenManager:
21
27
  * a single-flight login + reactive expiry-replay (with heuristic, not just
22
28
  * status-code, expiry detection) + clear-on-settle so a rejected login never
23
29
  * sticks. Used by artsonia/canvas/evite/signupgenius/skylight.
@@ -179,6 +185,98 @@ export declare class SessionStore<T extends Record<string, unknown>> {
179
185
  /** Clear in-memory state without touching disk. Test helper. */
180
186
  resetForTest(): void;
181
187
  }
188
+ /**
189
+ * A place to keep a credential between processes.
190
+ *
191
+ * Why this exists: {@link TokenManager} and {@link CookieSessionManager} own a
192
+ * credential's lifecycle *within* a process, and every fleet server used to
193
+ * throw that credential away on exit — so a cold start re-ran the full login
194
+ * even when a valid refresh token had been minted seconds earlier. On
195
+ * `mcp-host` that is the normal case, not the exception: children idle out
196
+ * after ten minutes and the machine scales to zero behind them. Several
197
+ * services rate-limit the login endpoint, and at least one (per the kiaaccess
198
+ * notes) escalates repeated attempts to a captcha that breaks server-side auth
199
+ * for the account permanently. Re-login is not always a free retry.
200
+ *
201
+ * Deliberately opt-in: a manager given no `persistence` behaves exactly as it
202
+ * did before, and no credential reaches a disk because a package was upgraded.
203
+ *
204
+ * Both methods may be sync or async. The fleet's own implementation
205
+ * ({@link createFileStatePersistence}) is sync — it writes one small file — but
206
+ * the async signature leaves room for a backend that has to go over a wire.
207
+ *
208
+ * **Implementations must not throw.** The managers guard every call anyway, but
209
+ * the contract is that a persistence failure degrades to in-memory operation:
210
+ * a read-only or full disk must cost a re-login, never a failed request.
211
+ */
212
+ export interface StatePersistence<T> {
213
+ /** Read the stored state; `null` when absent, unparseable, or unusable. */
214
+ load(): T | null | Promise<T | null>;
215
+ /** Write state, replacing whatever was there. */
216
+ save(state: T): void | Promise<void>;
217
+ /**
218
+ * Discard the stored state. Optional, but a manager that detects its stored
219
+ * credential is no good calls this — without it, an expired session is read
220
+ * straight back off disk and the expiry loops.
221
+ */
222
+ clear?(): void | Promise<void>;
223
+ }
224
+ /** Options for {@link createFileStatePersistence}. */
225
+ export interface FileStatePersistenceOptions<T> {
226
+ /** Absolute path to the JSON file. Parent directories are created as needed. */
227
+ filePath: string;
228
+ /**
229
+ * Narrow the parsed JSON to `T`, returning `null` to reject it. Without this
230
+ * any well-formed JSON is handed back and the caller must check the shape —
231
+ * the managers do, but a custom consumer should pass a guard.
232
+ */
233
+ validate?: (raw: unknown) => T | null;
234
+ }
235
+ /**
236
+ * File-backed {@link StatePersistence}. The file is `0600`, re-asserted after
237
+ * the write because `mode` only applies on creation. A directory is created
238
+ * `0700` and re-asserted the same way — but ONLY one this call creates: a bare
239
+ * {@link resolveStateDir} is `$HOME`, and on `mcp-host` the data dir exists
240
+ * before the child starts, so re-permissioning a pre-existing directory would
241
+ * be an invasive side effect of writing one token file rather than hardening.
242
+ *
243
+ * Two differences from {@link SessionStore}, which is why this is its own
244
+ * implementation rather than a wrapper over it. It holds ONE record rather than
245
+ * a keyed collection; and it replaces the file **atomically** — written to a
246
+ * temp file beside it, then renamed over the target — because two children of
247
+ * the same registration can share a data directory, and a half-written token
248
+ * file that parses as valid JSON is worse than none.
249
+ *
250
+ * Nothing here throws. A load failure (absent, corrupt, rejected by `validate`)
251
+ * returns `null`; a save failure is swallowed and leaves the previous file
252
+ * intact. On `mcp-host` this belongs under {@link resolveStateDir}, which needs
253
+ * the registration to declare `state.dataDir: true` — the runner's
254
+ * unpersisted-state detector will report the omission rather than let the
255
+ * writes silently vanish on the next idle-stop.
256
+ */
257
+ export declare function createFileStatePersistence<T>(opts: FileStatePersistenceOptions<T>): Required<StatePersistence<T>>;
258
+ /** Options for {@link resolveStateDir}. */
259
+ export interface ResolveStateDirOptions {
260
+ /** Environment to read (defaults to `process.env`) — injectable for tests. */
261
+ env?: Record<string, string | undefined>;
262
+ /** Optional service-scoped subdirectory to join onto the base. */
263
+ subdir?: string;
264
+ }
265
+ /**
266
+ * Where a server should keep state that must survive a restart.
267
+ *
268
+ * `MCP_DATA_DIR` first — that is the variable `mcp-host` injects for a
269
+ * registration with `state.dataDir: true`, pointing at a path on the Fly volume
270
+ * keyed by the registration itself (a slot `$HOME` is handed out by arrival
271
+ * order and moves between boots, which is why the data dir is the fix and a
272
+ * bigger rootfs is not). Then `HOME`, then the OS home directory.
273
+ *
274
+ * Blank and unexpanded-placeholder values (`${MCP_DATA_DIR}`, the shape a host
275
+ * config leaves behind when a variable was never substituted) are ignored
276
+ * rather than used as a literal directory name — the same hardening
277
+ * {@link readEnvVar} applies.
278
+ */
279
+ export declare function resolveStateDir(opts?: ResolveStateDirOptions): string;
182
280
  /** Refresh proactively this many ms before the access token expires. */
183
281
  export declare const TOKEN_REFRESH_SKEW_MS: number;
184
282
  /** A bearer access token + (optional) refresh token + absolute expiry. */
@@ -198,8 +296,21 @@ export interface RefreshedTokens {
198
296
  }
199
297
  /** Options for {@link TokenManager}. */
200
298
  export interface TokenManagerOptions {
201
- /** Initial tokens (typically from env or a one-shot bootstrap). */
202
- initial: BearerTokens;
299
+ /**
300
+ * The starting tokens — either the tokens themselves, or a **bootstrap
301
+ * function** that mints them (typically a full login).
302
+ *
303
+ * Pass the function form to get the persistence benefit: it is invoked only
304
+ * when {@link TokenManagerOptions.persistence} has nothing usable, so a
305
+ * restart that finds a stored token never logs in at all, and one that finds
306
+ * an expired token with a refresh token spends a refresh instead of a login.
307
+ * It is single-flighted like every other credential operation here, so a
308
+ * burst of first calls hits a rate-limited login endpoint exactly once.
309
+ *
310
+ * The eager object form is unchanged: the caller already paid for the login,
311
+ * so persistence is not consulted and the tokens are used as given.
312
+ */
313
+ initial: BearerTokens | (() => Promise<BearerTokens>);
203
314
  /**
204
315
  * Exchange the current refresh token for fresh tokens. Called at most once
205
316
  * per concurrent burst (the in-flight promise is shared).
@@ -210,36 +321,109 @@ export interface TokenManagerOptions {
210
321
  * refresh). Defaults to {@link TOKEN_REFRESH_SKEW_MS} (5 minutes).
211
322
  */
212
323
  skewMs?: number;
324
+ /**
325
+ * Keep tokens across process restarts. Read once on the bootstrap path
326
+ * (function-form `initial` only), written after every successful bootstrap
327
+ * and refresh, including rotation. Omit for the previous in-memory-only
328
+ * behaviour. See {@link StatePersistence}.
329
+ */
330
+ persistence?: StatePersistence<BearerTokens>;
331
+ /**
332
+ * Decide whether a {@link TokenManagerOptions.refresh} rejection means the
333
+ * credential itself is dead (re-mint via the bootstrap) or the endpoint was
334
+ * merely unreachable (surface it, keep the token).
335
+ *
336
+ * The distinction matters in both directions. Treating a transient failure as
337
+ * revocation deletes a still-VALID refresh token and burns a login against an
338
+ * endpoint that may rate-limit or escalate to a captcha — the exact cost this
339
+ * whole feature exists to avoid. Treating a real revocation as transient
340
+ * leaves the server broken until someone deletes the stored file by hand.
341
+ *
342
+ * The default resolves that by only excusing failures that are transient *by
343
+ * construction* — a {@link RateLimitedError}, a {@link RequestTimeoutError},
344
+ * or an {@link ApiError} with a 5xx status. Anything else is assumed to be a
345
+ * dead credential, which keeps the recover-from-revocation guarantee. Override
346
+ * it for a service that signals revocation some other way (or, conversely, one
347
+ * that answers a live token with a 5xx). Mirrors the permanent-vs-transient
348
+ * split {@link CookieSessionManagerOptions.isPermanentError} already makes.
349
+ */
350
+ isRefreshRevoked?: (err: unknown) => boolean;
351
+ /** Injectable clock (defaults to `Date.now`) — for tests. */
352
+ now?: () => number;
213
353
  }
214
354
  /**
215
355
  * Manages a bearer access token's lifecycle:
216
356
  *
357
+ * - **Lazy bootstrap:** with a function-form {@link TokenManagerOptions.initial}
358
+ * the login runs on first use, and only if {@link TokenManagerOptions.persistence}
359
+ * has no usable token — the difference between a cold start costing a login
360
+ * and costing nothing.
217
361
  * - **Proactive:** {@link TokenManager.getAccessToken} refreshes when the token
218
362
  * is within `skewMs` (default 5 min) of expiry, returning a still-valid token.
219
363
  * - **Reactive:** {@link TokenManager.withAuth} runs a request, and on a `401`
220
364
  * refreshes once and replays exactly once (no infinite loop).
221
- * - **Race-safe:** concurrent refreshes coalesce onto a single in-flight promise
222
- * (semaphore), so a burst of callers triggers exactly ONE token exchange. The
223
- * in-flight promise is cleared on settle so a later refresh can run again.
365
+ * - **Race-safe:** concurrent refreshes (and concurrent bootstraps) coalesce
366
+ * onto a single in-flight promise, so a burst of callers triggers exactly ONE
367
+ * exchange. The in-flight promise is cleared on settle so a later attempt can
368
+ * run again — a rejected bootstrap never sticks.
369
+ * - **Recoverable:** when a refresh fails and a bootstrap function is available,
370
+ * the stored credential is discarded and the login re-runs. A refresh token
371
+ * revoked between two runs of the process must not brick the server.
224
372
  */
225
373
  export declare class TokenManager {
226
- private accessToken;
227
- private refreshToken;
228
- private expiresAt;
374
+ private tokens;
375
+ private readonly bootstrapFn;
229
376
  private readonly refreshFn;
230
377
  private readonly skewMs;
378
+ private readonly persistence;
379
+ private readonly now;
380
+ private readonly isRefreshRevokedFn;
231
381
  private inFlight;
382
+ private bootstrapInFlight;
383
+ /**
384
+ * Persistence is consulted at most once per process. Without this the
385
+ * revoked-token recovery below re-reads the SAME rejected record — `clear()`
386
+ * is optional on {@link StatePersistence} and its failures are swallowed, so
387
+ * recovery must not depend on it. After the first read the in-memory tokens
388
+ * (or their deliberate absence) are the truth.
389
+ */
390
+ private persistenceRead;
232
391
  constructor(opts: TokenManagerOptions);
233
392
  /** Whether the token is within the skew window of (or past) expiry. */
234
393
  private needsRefresh;
394
+ /**
395
+ * A stored token is worth using when it is still valid, OR when it carries a
396
+ * refresh token — an expired-but-refreshable token still saves the login,
397
+ * which is the expensive half.
398
+ */
399
+ private isUsable;
400
+ /** Read persisted tokens, guarding shape and usability. Never throws. */
401
+ private loadPersisted;
402
+ /** Write tokens. Never throws — a failed write costs a login, not a request. */
403
+ private persist;
404
+ /** Discard persisted tokens (a refresh they could not satisfy). Never throws. */
405
+ private clearPersisted;
406
+ /** The current tokens, single-flighting the bootstrap if there are none. */
407
+ private ensureTokens;
408
+ /** One bootstrap attempt: persisted tokens if usable, else the login. */
409
+ private runBootstrap;
235
410
  /**
236
411
  * Single-flight refresh. Concurrent callers share one in-flight promise; it is
237
412
  * cleared on settle (success or failure) so a subsequent refresh can proceed.
238
413
  */
239
414
  refreshNow(): Promise<void>;
415
+ /** One refresh attempt against the current refresh token. */
416
+ private runRefresh;
417
+ /**
418
+ * Recover from a refresh the current credential could not satisfy — commonly
419
+ * a refresh token restored from a previous process and revoked since. Without
420
+ * a bootstrap to fall back on this is terminal; with one, re-minting beats
421
+ * staying broken forever. Shared so the two entry points cannot diverge.
422
+ */
423
+ private reBootstrap;
240
424
  /** Get a valid access token, refreshing proactively inside the skew window. */
241
425
  getAccessToken(): Promise<string>;
242
- /** Current absolute expiry (epoch ms). */
426
+ /** Current absolute expiry (epoch ms), or `0` before the first bootstrap. */
243
427
  getExpiresAt(): number;
244
428
  /**
245
429
  * Run an authenticated request with reactive 401-replay. `call` receives a
@@ -329,6 +513,25 @@ export interface CookieSessionManagerOptions<S, R = Response> {
329
513
  * login failure to the caller instead of the stale response.
330
514
  */
331
515
  onReplayLoginError?: (err: unknown) => void;
516
+ /**
517
+ * Keep the session across process restarts. Read ONCE, on the first login
518
+ * path, and written after every successful login and {@link
519
+ * CookieSessionManager.seed}. {@link CookieSessionManager.invalidate} clears
520
+ * it — without that, a session detected as expired would be read straight
521
+ * back off disk and the expiry would loop.
522
+ *
523
+ * The stored envelope carries the login time alongside the session so
524
+ * {@link CookieSessionManagerOptions.maxAgeMs} keeps counting from the
525
+ * original login rather than restarting at the restore. Omit for the previous
526
+ * in-memory-only behaviour. See {@link StatePersistence}.
527
+ */
528
+ persistence?: StatePersistence<PersistedCookieSession<S>>;
529
+ }
530
+ /** What {@link CookieSessionManagerOptions.persistence} stores: a session plus its login time. */
531
+ export interface PersistedCookieSession<S> {
532
+ session: S;
533
+ /** Epoch ms the session was minted or seeded — the `maxAgeMs` clock. */
534
+ sessionAt: number;
332
535
  }
333
536
  /**
334
537
  * Cookie-session analog of {@link TokenManager}: owns a site's cookie-session
@@ -382,6 +585,16 @@ export declare class CookieSessionManager<S = CookieSession, R = Response> {
382
585
  private readonly maxAgeMs;
383
586
  private readonly now;
384
587
  private readonly onReplayLoginErrorFn;
588
+ private readonly persistence;
589
+ /** Persistence is consulted once per process; a miss must not be re-read. */
590
+ private persistenceRead;
591
+ /**
592
+ * Serializes persistence writes. `seed()` and `invalidate()` are synchronous
593
+ * by contract and so fire-and-forget their save/clear; with an async backend a
594
+ * slow save could otherwise land AFTER the clear that followed it and leave an
595
+ * invalidated session on disk.
596
+ */
597
+ private persistChain;
385
598
  constructor(opts: CookieSessionManagerOptions<S, R>);
386
599
  /** The current session, or `undefined` before the first successful login. */
387
600
  get current(): S | undefined;
@@ -425,6 +638,18 @@ export declare class CookieSessionManager<S = CookieSession, R = Response> {
425
638
  * (new config). Used to recover from a detected session expiry.
426
639
  */
427
640
  invalidate(): void;
641
+ /**
642
+ * The persisted session, if there is one worth using. Read at most once per
643
+ * process — after that the in-memory session (or its absence) is the truth,
644
+ * so an invalidate() cannot be undone by a stale file.
645
+ */
646
+ private restoreFromPersistence;
647
+ /** Append a persistence op to the chain, preserving call order. Never throws. */
648
+ private enqueuePersist;
649
+ /** Write the session. Never throws — a failed write costs a login, not a request. */
650
+ private persist;
651
+ /** Discard the persisted session. Never throws. */
652
+ private clearPersisted;
428
653
  /**
429
654
  * Run an authenticated `call` with the current session and reactive
430
655
  * expiry-replay. `call` receives the session and returns a `Response`. If
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/session/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/session/index.ts"],"names":[],"mappings":"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"}
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Session scaffolding for the MCP fleet — four related-but-distinct surfaces
2
+ * Session scaffolding for the MCP fleet — five related-but-distinct surfaces
3
3
  * consolidated behind one subpath (`@chrischall/mcp-utils/session`):
4
4
  *
5
5
  * 1. {@link SessionRegistry} — an *ephemeral, in-memory* registry of signed-in
@@ -12,12 +12,18 @@
12
12
  * (0600 file / 0700 dir), normalized keys, and a most-recently-used "active"
13
13
  * pointer. Used by ofw/creditkarma/honeybook.
14
14
  *
15
- * 3. {@link TokenManager} — a bearer-token lifecycle manager: proactive refresh
16
- * inside a 5-minute skew window, reactive 401-replay, and a single-flight
17
- * semaphore so concurrent callers coalesce into ONE refresh. Used by
18
- * skylight/canvas/creditkarma/honeybook/zola.
15
+ * 3. {@link StatePersistence} — the opt-in seam that lets the two managers
16
+ * below survive a process restart, with {@link createFileStatePersistence}
17
+ * (atomic, 0600) and {@link resolveStateDir} (`MCP_DATA_DIR` `HOME`) as
18
+ * the disk-backed default. Without it a scale-to-zero host re-runs a full
19
+ * login on every cold start, against endpoints that often rate-limit it.
19
20
  *
20
- * 4. {@link CookieSessionManager} — the cookie-session analog of TokenManager:
21
+ * 4. {@link TokenManager} — a bearer-token lifecycle manager: a lazily
22
+ * bootstrapped login, proactive refresh inside a 5-minute skew window,
23
+ * reactive 401-replay, and a single-flight semaphore so concurrent callers
24
+ * coalesce into ONE exchange. Used by skylight/canvas/creditkarma/honeybook/zola.
25
+ *
26
+ * 5. {@link CookieSessionManager} — the cookie-session analog of TokenManager:
21
27
  * a single-flight login + reactive expiry-replay (with heuristic, not just
22
28
  * status-code, expiry detection) + clear-on-settle so a rejected login never
23
29
  * sticks. Used by artsonia/canvas/evite/signupgenius/skylight.
@@ -26,10 +32,13 @@
26
32
  * the one audited implementation the fleet shares.
27
33
  */
28
34
  import { z } from 'zod';
29
- import { existsSync, readFileSync, writeFileSync, mkdirSync, chmodSync, renameSync, } from 'node:fs';
30
- import { dirname } from 'node:path';
35
+ import { existsSync, readFileSync, writeFileSync, mkdirSync, chmodSync, renameSync, unlinkSync, } from 'node:fs';
36
+ import { dirname, join } from 'node:path';
37
+ import { homedir } from 'node:os';
31
38
  import { randomBytes } from 'node:crypto';
32
39
  import { textResult } from '../response/index.js';
40
+ import { readEnvVar } from '../config/index.js';
41
+ import { ApiError, RateLimitedError, RequestTimeoutError } from '../http/index.js';
33
42
  /** Generate a short, collision-resistant label id. */
34
43
  function makeSessionId() {
35
44
  return Date.now().toString(36) + randomBytes(6).toString('hex');
@@ -389,72 +398,336 @@ export class SessionStore {
389
398
  this.mostRecentKey = null;
390
399
  }
391
400
  }
401
+ /**
402
+ * File-backed {@link StatePersistence}. The file is `0600`, re-asserted after
403
+ * the write because `mode` only applies on creation. A directory is created
404
+ * `0700` and re-asserted the same way — but ONLY one this call creates: a bare
405
+ * {@link resolveStateDir} is `$HOME`, and on `mcp-host` the data dir exists
406
+ * before the child starts, so re-permissioning a pre-existing directory would
407
+ * be an invasive side effect of writing one token file rather than hardening.
408
+ *
409
+ * Two differences from {@link SessionStore}, which is why this is its own
410
+ * implementation rather than a wrapper over it. It holds ONE record rather than
411
+ * a keyed collection; and it replaces the file **atomically** — written to a
412
+ * temp file beside it, then renamed over the target — because two children of
413
+ * the same registration can share a data directory, and a half-written token
414
+ * file that parses as valid JSON is worse than none.
415
+ *
416
+ * Nothing here throws. A load failure (absent, corrupt, rejected by `validate`)
417
+ * returns `null`; a save failure is swallowed and leaves the previous file
418
+ * intact. On `mcp-host` this belongs under {@link resolveStateDir}, which needs
419
+ * the registration to declare `state.dataDir: true` — the runner's
420
+ * unpersisted-state detector will report the omission rather than let the
421
+ * writes silently vanish on the next idle-stop.
422
+ */
423
+ export function createFileStatePersistence(opts) {
424
+ const { filePath, validate } = opts;
425
+ return {
426
+ load() {
427
+ if (!existsSync(filePath))
428
+ return null;
429
+ try {
430
+ const raw = JSON.parse(readFileSync(filePath, 'utf8'));
431
+ if (validate !== undefined)
432
+ return validate(raw);
433
+ return raw;
434
+ }
435
+ catch {
436
+ // Corrupt or unreadable: the caller re-authenticates. Unlike
437
+ // SessionStore this does NOT preserve a `.corrupt` copy — the file
438
+ // holds one refreshable credential, not an irreplaceable capture.
439
+ return null;
440
+ }
441
+ },
442
+ save(state) {
443
+ const dir = dirname(filePath);
444
+ // A unique temp name so two writers cannot share (and tear) one temp file.
445
+ const tmp = `${filePath}.tmp-${randomBytes(6).toString('hex')}`;
446
+ // Only a directory THIS call creates gets tightened. `resolveStateDir()`
447
+ // without a `subdir` is `$HOME`, and chmodding a user's home directory to
448
+ // 0700 is not an acceptable side effect of writing one token file.
449
+ const dirExisted = existsSync(dir);
450
+ try {
451
+ mkdirSync(dir, { recursive: true, mode: 0o700 });
452
+ // mkdir's mode is subject to the umask, so re-assert it on what we made.
453
+ if (!dirExisted)
454
+ chmodSync(dir, 0o700);
455
+ writeFileSync(tmp, JSON.stringify(state, null, 2), { mode: 0o600 });
456
+ // Tighten BEFORE the rename: the window where fresh secrets sit in a
457
+ // possibly-loose file should not exist at all.
458
+ chmodSync(tmp, 0o600);
459
+ renameSync(tmp, filePath);
460
+ chmodSync(filePath, 0o600);
461
+ }
462
+ catch {
463
+ // Degrade to in-memory. Best-effort cleanup of the temp file so a
464
+ // failed write does not litter the data dir.
465
+ try {
466
+ if (existsSync(tmp))
467
+ unlinkSync(tmp);
468
+ }
469
+ catch {
470
+ /* best-effort */
471
+ }
472
+ }
473
+ },
474
+ clear() {
475
+ try {
476
+ if (existsSync(filePath))
477
+ unlinkSync(filePath);
478
+ }
479
+ catch {
480
+ /* best-effort */
481
+ }
482
+ },
483
+ };
484
+ }
485
+ /**
486
+ * Where a server should keep state that must survive a restart.
487
+ *
488
+ * `MCP_DATA_DIR` first — that is the variable `mcp-host` injects for a
489
+ * registration with `state.dataDir: true`, pointing at a path on the Fly volume
490
+ * keyed by the registration itself (a slot `$HOME` is handed out by arrival
491
+ * order and moves between boots, which is why the data dir is the fix and a
492
+ * bigger rootfs is not). Then `HOME`, then the OS home directory.
493
+ *
494
+ * Blank and unexpanded-placeholder values (`${MCP_DATA_DIR}`, the shape a host
495
+ * config leaves behind when a variable was never substituted) are ignored
496
+ * rather than used as a literal directory name — the same hardening
497
+ * {@link readEnvVar} applies.
498
+ */
499
+ export function resolveStateDir(opts = {}) {
500
+ // Delegated rather than re-implemented: readEnvVar is the fleet's one place
501
+ // that suppresses blank, `'null'`, `'undefined'` AND `${...}` placeholders.
502
+ // The sentinels matter as much as the placeholders here — `MCP_DATA_DIR=null`
503
+ // is a RELATIVE `./null` directory, so the credential would be written under
504
+ // the process cwd and silently stop surviving restarts.
505
+ const env = opts.env;
506
+ const base = readEnvVar('MCP_DATA_DIR', { env }) ?? readEnvVar('HOME', { env }) ?? homedir();
507
+ return opts.subdir !== undefined ? join(base, opts.subdir) : base;
508
+ }
392
509
  // ===========================================================================
393
- // 3. TokenManager — bearer lifecycle (skew, proactive + reactive, race-safe)
510
+ // 4. TokenManager — bearer lifecycle (skew, proactive + reactive, race-safe)
394
511
  // ===========================================================================
395
512
  /** Refresh proactively this many ms before the access token expires. */
396
513
  export const TOKEN_REFRESH_SKEW_MS = 5 * 60 * 1000;
514
+ /**
515
+ * The default {@link TokenManagerOptions.isRefreshRevoked}: everything except
516
+ * the failures mcp-utils itself can prove are transient. Deliberately
517
+ * conservative — an unrecognised error is treated as a dead credential, because
518
+ * a needless re-login costs one request and an unrecoverable one costs the
519
+ * server until a human intervenes.
520
+ */
521
+ function defaultIsRefreshRevoked(err) {
522
+ if (err instanceof RateLimitedError || err instanceof RequestTimeoutError)
523
+ return false;
524
+ if (err instanceof ApiError && err.status >= 500)
525
+ return false;
526
+ return true;
527
+ }
528
+ /** Whether a parsed record has the shape of {@link BearerTokens}. */
529
+ function isBearerTokens(raw) {
530
+ if (raw === null || typeof raw !== 'object')
531
+ return false;
532
+ const t = raw;
533
+ if (typeof t.accessToken !== 'string' || t.accessToken === '')
534
+ return false;
535
+ if (typeof t.expiresAt !== 'number' || !Number.isFinite(t.expiresAt))
536
+ return false;
537
+ return t.refreshToken === undefined || typeof t.refreshToken === 'string';
538
+ }
397
539
  /**
398
540
  * Manages a bearer access token's lifecycle:
399
541
  *
542
+ * - **Lazy bootstrap:** with a function-form {@link TokenManagerOptions.initial}
543
+ * the login runs on first use, and only if {@link TokenManagerOptions.persistence}
544
+ * has no usable token — the difference between a cold start costing a login
545
+ * and costing nothing.
400
546
  * - **Proactive:** {@link TokenManager.getAccessToken} refreshes when the token
401
547
  * is within `skewMs` (default 5 min) of expiry, returning a still-valid token.
402
548
  * - **Reactive:** {@link TokenManager.withAuth} runs a request, and on a `401`
403
549
  * refreshes once and replays exactly once (no infinite loop).
404
- * - **Race-safe:** concurrent refreshes coalesce onto a single in-flight promise
405
- * (semaphore), so a burst of callers triggers exactly ONE token exchange. The
406
- * in-flight promise is cleared on settle so a later refresh can run again.
550
+ * - **Race-safe:** concurrent refreshes (and concurrent bootstraps) coalesce
551
+ * onto a single in-flight promise, so a burst of callers triggers exactly ONE
552
+ * exchange. The in-flight promise is cleared on settle so a later attempt can
553
+ * run again — a rejected bootstrap never sticks.
554
+ * - **Recoverable:** when a refresh fails and a bootstrap function is available,
555
+ * the stored credential is discarded and the login re-runs. A refresh token
556
+ * revoked between two runs of the process must not brick the server.
407
557
  */
408
558
  export class TokenManager {
409
- accessToken;
410
- refreshToken;
411
- expiresAt;
559
+ tokens;
560
+ bootstrapFn;
412
561
  refreshFn;
413
562
  skewMs;
563
+ persistence;
564
+ now;
565
+ isRefreshRevokedFn;
414
566
  inFlight;
567
+ bootstrapInFlight;
568
+ /**
569
+ * Persistence is consulted at most once per process. Without this the
570
+ * revoked-token recovery below re-reads the SAME rejected record — `clear()`
571
+ * is optional on {@link StatePersistence} and its failures are swallowed, so
572
+ * recovery must not depend on it. After the first read the in-memory tokens
573
+ * (or their deliberate absence) are the truth.
574
+ */
575
+ persistenceRead = false;
415
576
  constructor(opts) {
416
- this.accessToken = opts.initial.accessToken;
417
- this.refreshToken = opts.initial.refreshToken;
418
- this.expiresAt = opts.initial.expiresAt;
577
+ if (typeof opts.initial === 'function') {
578
+ this.bootstrapFn = opts.initial;
579
+ }
580
+ else {
581
+ this.tokens = { ...opts.initial };
582
+ }
419
583
  this.refreshFn = opts.refresh;
420
584
  this.skewMs = opts.skewMs ?? TOKEN_REFRESH_SKEW_MS;
585
+ this.persistence = opts.persistence;
586
+ this.now = opts.now ?? Date.now;
587
+ this.isRefreshRevokedFn = opts.isRefreshRevoked ?? defaultIsRefreshRevoked;
421
588
  }
422
589
  /** Whether the token is within the skew window of (or past) expiry. */
423
590
  needsRefresh() {
424
- return Date.now() >= this.expiresAt - this.skewMs;
591
+ if (this.tokens === undefined)
592
+ return false;
593
+ return this.now() >= this.tokens.expiresAt - this.skewMs;
594
+ }
595
+ /**
596
+ * A stored token is worth using when it is still valid, OR when it carries a
597
+ * refresh token — an expired-but-refreshable token still saves the login,
598
+ * which is the expensive half.
599
+ */
600
+ isUsable(t) {
601
+ return this.now() < t.expiresAt - this.skewMs || t.refreshToken !== undefined;
602
+ }
603
+ /** Read persisted tokens, guarding shape and usability. Never throws. */
604
+ async loadPersisted() {
605
+ if (this.persistence === undefined || this.persistenceRead)
606
+ return null;
607
+ this.persistenceRead = true;
608
+ try {
609
+ const raw = await this.persistence.load();
610
+ if (!isBearerTokens(raw) || !this.isUsable(raw))
611
+ return null;
612
+ return raw;
613
+ }
614
+ catch {
615
+ return null;
616
+ }
617
+ }
618
+ /** Write tokens. Never throws — a failed write costs a login, not a request. */
619
+ async persist(t) {
620
+ if (this.persistence === undefined)
621
+ return;
622
+ try {
623
+ await this.persistence.save(t);
624
+ }
625
+ catch {
626
+ /* in-memory tokens are still valid for this process */
627
+ }
628
+ }
629
+ /** Discard persisted tokens (a refresh they could not satisfy). Never throws. */
630
+ async clearPersisted() {
631
+ if (this.persistence?.clear === undefined)
632
+ return;
633
+ try {
634
+ await this.persistence.clear();
635
+ }
636
+ catch {
637
+ /* best-effort */
638
+ }
639
+ }
640
+ /** The current tokens, single-flighting the bootstrap if there are none. */
641
+ ensureTokens() {
642
+ if (this.tokens !== undefined)
643
+ return Promise.resolve(this.tokens);
644
+ if (this.bootstrapInFlight === undefined) {
645
+ this.bootstrapInFlight = this.runBootstrap().finally(() => {
646
+ this.bootstrapInFlight = undefined;
647
+ });
648
+ }
649
+ return this.bootstrapInFlight;
650
+ }
651
+ /** One bootstrap attempt: persisted tokens if usable, else the login. */
652
+ async runBootstrap() {
653
+ const stored = await this.loadPersisted();
654
+ if (stored !== null) {
655
+ this.tokens = stored;
656
+ return stored;
657
+ }
658
+ if (this.bootstrapFn === undefined) {
659
+ throw new Error('TokenManager: no tokens and no bootstrap function to mint them.');
660
+ }
661
+ const fresh = await this.bootstrapFn();
662
+ this.tokens = fresh;
663
+ await this.persist(fresh);
664
+ return fresh;
425
665
  }
426
666
  /**
427
667
  * Single-flight refresh. Concurrent callers share one in-flight promise; it is
428
668
  * cleared on settle (success or failure) so a subsequent refresh can proceed.
429
669
  */
430
670
  refreshNow() {
431
- if (!this.inFlight) {
432
- const rt = this.refreshToken;
433
- if (rt === undefined) {
434
- return Promise.reject(new Error('TokenManager: cannot refresh — no refresh token is available.'));
435
- }
436
- this.inFlight = (async () => {
437
- const tok = await this.refreshFn(rt);
438
- this.accessToken = tok.accessToken;
439
- if (tok.refreshToken !== undefined && tok.refreshToken !== '') {
440
- this.refreshToken = tok.refreshToken;
441
- }
442
- this.expiresAt = tok.expiresAt;
443
- })().finally(() => {
671
+ if (this.inFlight === undefined) {
672
+ this.inFlight = this.runRefresh().finally(() => {
444
673
  this.inFlight = undefined;
445
674
  });
446
675
  }
447
676
  return this.inFlight;
448
677
  }
678
+ /** One refresh attempt against the current refresh token. */
679
+ async runRefresh() {
680
+ const current = this.tokens ?? (await this.ensureTokens());
681
+ const rt = current.refreshToken;
682
+ if (rt === undefined) {
683
+ throw new Error('TokenManager: cannot refresh — no refresh token is available.');
684
+ }
685
+ const tok = await this.refreshFn(rt);
686
+ this.tokens = {
687
+ accessToken: tok.accessToken,
688
+ // Rotation is optional: keep the current refresh token when none comes back.
689
+ refreshToken: tok.refreshToken !== undefined && tok.refreshToken !== '' ? tok.refreshToken : rt,
690
+ expiresAt: tok.expiresAt,
691
+ };
692
+ await this.persist(this.tokens);
693
+ }
694
+ /**
695
+ * Recover from a refresh the current credential could not satisfy — commonly
696
+ * a refresh token restored from a previous process and revoked since. Without
697
+ * a bootstrap to fall back on this is terminal; with one, re-minting beats
698
+ * staying broken forever. Shared so the two entry points cannot diverge.
699
+ */
700
+ async reBootstrap(err) {
701
+ if (this.bootstrapFn === undefined)
702
+ throw err;
703
+ // Only a credential we believe is DEAD is worth destroying. A 5xx or a
704
+ // timeout leaves a perfectly good refresh token that the next call can use.
705
+ if (!this.isRefreshRevokedFn(err))
706
+ throw err;
707
+ this.tokens = undefined;
708
+ await this.clearPersisted();
709
+ return this.ensureTokens();
710
+ }
449
711
  /** Get a valid access token, refreshing proactively inside the skew window. */
450
712
  async getAccessToken() {
451
- if (this.needsRefresh())
452
- await this.refreshNow();
453
- return this.accessToken;
713
+ // Not `await this.ensureTokens()` unconditionally: with tokens already in
714
+ // hand that await would defer the refresh below by a microtask, and callers
715
+ // rely on a concurrent burst reaching the single-flight in the SAME tick.
716
+ let tokens = this.tokens ?? (await this.ensureTokens());
717
+ if (this.needsRefresh()) {
718
+ try {
719
+ await this.refreshNow();
720
+ }
721
+ catch (err) {
722
+ return (await this.reBootstrap(err)).accessToken;
723
+ }
724
+ tokens = this.tokens ?? tokens;
725
+ }
726
+ return tokens.accessToken;
454
727
  }
455
- /** Current absolute expiry (epoch ms). */
728
+ /** Current absolute expiry (epoch ms), or `0` before the first bootstrap. */
456
729
  getExpiresAt() {
457
- return this.expiresAt;
730
+ return this.tokens?.expiresAt ?? 0;
458
731
  }
459
732
  /**
460
733
  * Run an authenticated request with reactive 401-replay. `call` receives a
@@ -472,13 +745,31 @@ export class TokenManager {
472
745
  const usedToken = await this.getAccessToken();
473
746
  let res = await call(usedToken);
474
747
  if (res.status === 401) {
475
- if (this.accessToken === usedToken)
476
- await this.refreshNow();
477
- res = await call(this.accessToken);
748
+ if (this.tokens?.accessToken === usedToken) {
749
+ // Same revoked-credential recovery getAccessToken has: a 401 replay must
750
+ // not be the one entry point that throws where the other re-mints.
751
+ try {
752
+ await this.refreshNow();
753
+ }
754
+ catch (err) {
755
+ await this.reBootstrap(err);
756
+ }
757
+ }
758
+ res = await call(this.tokens?.accessToken ?? usedToken);
478
759
  }
479
760
  return res;
480
761
  }
481
762
  }
763
+ /** Whether a parsed record has the shape of {@link PersistedCookieSession}. */
764
+ function isPersistedCookieSession(raw) {
765
+ if (raw === null || typeof raw !== 'object')
766
+ return false;
767
+ const r = raw;
768
+ if (typeof r.sessionAt !== 'number' || !Number.isFinite(r.sessionAt))
769
+ return false;
770
+ // Field-by-field, like isBearerTokens: a primitive is not a session shape.
771
+ return typeof r.session === 'object' && r.session !== null;
772
+ }
482
773
  /**
483
774
  * Cookie-session analog of {@link TokenManager}: owns a site's cookie-session
484
775
  * lifecycle with the same single-flight / replay / clear-on-settle discipline,
@@ -531,6 +822,16 @@ export class CookieSessionManager {
531
822
  maxAgeMs;
532
823
  now;
533
824
  onReplayLoginErrorFn;
825
+ persistence;
826
+ /** Persistence is consulted once per process; a miss must not be re-read. */
827
+ persistenceRead = false;
828
+ /**
829
+ * Serializes persistence writes. `seed()` and `invalidate()` are synchronous
830
+ * by contract and so fire-and-forget their save/clear; with an async backend a
831
+ * slow save could otherwise land AFTER the clear that followed it and leave an
832
+ * invalidated session on disk.
833
+ */
834
+ persistChain = Promise.resolve();
534
835
  constructor(opts) {
535
836
  this.loginFn = opts.login;
536
837
  // Optional: ensure-only consumers (no per-request expiry path) omit it; the
@@ -540,6 +841,7 @@ export class CookieSessionManager {
540
841
  this.maxAgeMs = opts.maxAgeMs;
541
842
  this.now = opts.now ?? Date.now;
542
843
  this.onReplayLoginErrorFn = opts.onReplayLoginError;
844
+ this.persistence = opts.persistence;
543
845
  }
544
846
  /** The current session, or `undefined` before the first successful login. */
545
847
  get current() {
@@ -588,6 +890,12 @@ export class CookieSessionManager {
588
890
  this.session = session;
589
891
  this.sessionAt = this.now();
590
892
  this.inFlight = undefined; // detach any in-flight login (it won't re-stamp)
893
+ // The caller has installed a session, so the stored one is superseded and
894
+ // must never be restored over it (or over a later invalidate()).
895
+ this.persistenceRead = true;
896
+ // Fire-and-forget: seed() is synchronous by contract, and a persistence
897
+ // failure must not change what the caller just installed.
898
+ void this.persist(session, this.sessionAt);
591
899
  }
592
900
  /**
593
901
  * One login attempt. Self-clears `inFlight` on settle so a rejected login
@@ -602,11 +910,26 @@ export class CookieSessionManager {
602
910
  const holder = {};
603
911
  holder.p = (async () => {
604
912
  try {
913
+ // A restored session is the whole point: skip the login entirely.
914
+ // Guarded rather than awaited unconditionally — with no persistence the
915
+ // await would defer loginFn() past the tick a concurrent burst needs.
916
+ const restored = this.persistence !== undefined && !this.persistenceRead
917
+ ? await this.restoreFromPersistence()
918
+ : null;
919
+ if (restored !== null) {
920
+ if (this.inFlight === holder.p) {
921
+ this.session = restored.session;
922
+ this.sessionAt = restored.sessionAt;
923
+ }
924
+ return restored.session;
925
+ }
605
926
  const session = await this.loginFn();
927
+ const at = this.now();
606
928
  if (this.inFlight === holder.p) {
607
929
  this.session = session;
608
- this.sessionAt = this.now();
930
+ this.sessionAt = at;
609
931
  }
932
+ await this.persist(session, at);
610
933
  return session;
611
934
  }
612
935
  catch (err) {
@@ -630,6 +953,70 @@ export class CookieSessionManager {
630
953
  invalidate() {
631
954
  this.session = undefined;
632
955
  this.inFlight = undefined;
956
+ // Fire-and-forget, and unconditional: the stored copy is the same session
957
+ // that just proved unusable. Leaving it would have the next ensure() read
958
+ // it back and loop on the very expiry that caused this call.
959
+ void this.clearPersisted();
960
+ }
961
+ /**
962
+ * The persisted session, if there is one worth using. Read at most once per
963
+ * process — after that the in-memory session (or its absence) is the truth,
964
+ * so an invalidate() cannot be undone by a stale file.
965
+ */
966
+ async restoreFromPersistence() {
967
+ if (this.persistence === undefined || this.persistenceRead)
968
+ return null;
969
+ this.persistenceRead = true;
970
+ try {
971
+ // Through the chain, not around it: `invalidate()` queues its `clear()`,
972
+ // and a read that jumped that queue would restore the very session the
973
+ // clear is about to remove.
974
+ let raw = null;
975
+ await this.enqueuePersist(async () => {
976
+ raw = await this.persistence?.load();
977
+ });
978
+ if (!isPersistedCookieSession(raw))
979
+ return null;
980
+ // Honour the proactive TTL against the ORIGINAL login time.
981
+ if (this.maxAgeMs !== undefined && this.now() - raw.sessionAt >= this.maxAgeMs)
982
+ return null;
983
+ return raw;
984
+ }
985
+ catch {
986
+ return null;
987
+ }
988
+ }
989
+ /** Append a persistence op to the chain, preserving call order. Never throws. */
990
+ enqueuePersist(op) {
991
+ const next = this.persistChain.then(op);
992
+ this.persistChain = next.catch(() => undefined);
993
+ return next;
994
+ }
995
+ /** Write the session. Never throws — a failed write costs a login, not a request. */
996
+ persist(session, sessionAt) {
997
+ return this.enqueuePersist(async () => {
998
+ if (this.persistence === undefined)
999
+ return;
1000
+ try {
1001
+ await this.persistence.save({ session, sessionAt });
1002
+ }
1003
+ catch {
1004
+ /* the in-memory session is still usable for this process */
1005
+ }
1006
+ });
1007
+ }
1008
+ /** Discard the persisted session. Never throws. */
1009
+ clearPersisted() {
1010
+ return this.enqueuePersist(async () => {
1011
+ if (this.persistence?.clear === undefined)
1012
+ return;
1013
+ try {
1014
+ await this.persistence.clear();
1015
+ }
1016
+ catch {
1017
+ /* best-effort */
1018
+ }
1019
+ });
633
1020
  }
634
1021
  /**
635
1022
  * Run an authenticated `call` with the current session and reactive
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/session/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/session/index.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chrischall/mcp-utils",
3
- "version": "0.15.0",
3
+ "version": "0.16.0",
4
4
  "description": "Shared scaffolding for the chrischall MCP fleet — server bootstrap, tool-result formatting, helpful errors, hardened env/config, a bearer API-client kit, zod atoms, session registries, a fetchproxy transport adapter, auth resolver skeletons, an in-memory test harness, and opt-in HTML helpers. The generic MCP glue hoisted out of ~19 sibling servers.",
5
5
  "type": "module",
6
6
  "license": "MIT",