@pipeworx/mcp-civic 0.1.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/src/index.ts ADDED
@@ -0,0 +1,1074 @@
1
+ interface McpToolDefinition {
2
+ name: string;
3
+ description: string;
4
+ /** Human-facing one-liner (fleet #1967). Optional; consumers fall back to
5
+ * description. Kept in step with shared/src/types.ts — scripts/lib/
6
+ * check-inlined-types.mjs reports drift at publish time. */
7
+ summary?: string;
8
+ inputSchema: {
9
+ type: 'object';
10
+ properties: Record<string, unknown>;
11
+ required?: string[];
12
+ anyOf?: Array<{ required: string[] }>;
13
+ oneOf?: Array<{ required: string[] }>;
14
+ allOf?: Array<{ required: string[] }>;
15
+ };
16
+ outputSchema?: Record<string, unknown>;
17
+ }
18
+
19
+ interface McpToolExport {
20
+ tools: McpToolDefinition[];
21
+ callTool: (name: string, args: Record<string, unknown>) => Promise<unknown>;
22
+ meter?: { credits: number };
23
+ cost?: Record<string, unknown>;
24
+ provider?: string;
25
+ }
26
+
27
+ /**
28
+ * Was this failure OUR OWN web service? — the other half of `internal-db-class.ts`.
29
+ *
30
+ * fleet #1089 pulled failures from our own Postgres out of `upstream_down` by
31
+ * keying on the SQLSTATE inside PostgREST's four-key error envelope. That
32
+ * covered the majority and structurally could not cover the rest: the rest
33
+ * never reach Postgres, so they carry no SQLSTATE. What was left, measured over
34
+ * the 24h to 2026-09-02T15:00Z (fleet #1096):
35
+ *
36
+ * 5 pipeworx-catalog get_pack_tools Pipeworx catalog error: 522 — error code: 522
37
+ * 3 fleet fleet_list_open … upstream_down: Fleet task queue did not respond within 25s
38
+ *
39
+ * 521/522/523/526 are Cloudflare saying its edge could not reach an ORIGIN, and
40
+ * in both of those rows the origin is ours — `gateway.pipeworx.io` for the
41
+ * catalog pack (it self-fetches when the gateway hasn't injected a manifest),
42
+ * our own Supabase for fleet. There is no third party anywhere in either call.
43
+ * Same defect as #1089: our own outage filed under `upstream_down`, the one
44
+ * class that means "the source is unreachable and there is nothing for us to
45
+ * fix", which is why the problem-tools triage skips it.
46
+ *
47
+ * WHY NOT A WORDING RULE. The obvious fix is to match `fleet db error:` and
48
+ * `Pipeworx catalog error:` in classifyToolError. Each is emitted from exactly
49
+ * one site today, so it would work today. It would also rot the first time
50
+ * somebody rewords a label — silently, and in the direction of hiding our own
51
+ * outage, which is worse than the bug being fixed. Every prose rule in
52
+ * error-class.ts has needed widening as packs invented new wording (#409/#450/
53
+ * #584); that history is most of that file's comment budget.
54
+ *
55
+ * WHAT THIS KEYS ON INSTEAD: **the host the call actually reached.** A URL's
56
+ * hostname is a fact about the call, not a guess about its prose. Two
57
+ * consequences that a pack-level flag could not give us, and the reason the
58
+ * flag was rejected:
59
+ *
60
+ * - It describes the CALL, not the pack. `govcon-intel` fans out to our own
61
+ * Supabase AND to genuine third parties; `court-listener` holds our cache
62
+ * in Supabase and fetches courtlistener.com. An `internallyHosted: true` on
63
+ * either pack would relabel a real third-party outage as ours — inventing
64
+ * work, which is the same class of error in the opposite direction.
65
+ * - It covers every future internal pack for free, instead of one declared
66
+ * slug at a time.
67
+ *
68
+ * WHY IT SURVIVES A REWORD. The marker below is not matched as a literal by two
69
+ * separate files. `markInternalOrigin()` writes it and `internalHostMetricsClass()`
70
+ * reads it, both from the single exported `INTERNAL_ORIGIN_MARKER` constant in
71
+ * this module — so changing the wording changes both sides in the same edit and
72
+ * cannot desynchronise them. The pack's own label (`fleet db error:`,
73
+ * `Pipeworx catalog error:`) is not read at all: reword it freely, the class is
74
+ * unaffected. That is the property `stripClassPrefix` lacked when it drifted
75
+ * from its own classifier three times and needed a CI gate to hold them
76
+ * together.
77
+ *
78
+ * WHERE THE 5xx TEST LIVES. `markInternalOrigin` is called from the places that
79
+ * hold the real `Response` — `httpError`/`httpErrorMessage` and the timeout
80
+ * branch of `fetchWithTimeout` in `shared/src/http.ts` — so "is this an
81
+ * availability failure" is decided from the actual status code, never re-derived
82
+ * by scraping a number out of a sentence. A 404 from our own registry for a slug
83
+ * that does not exist is a caller's bad argument and is deliberately NOT marked.
84
+ */
85
+
86
+ /**
87
+ * OUR OWN web service was unreachable — not an upstream, and never `upstream_down`.
88
+ *
89
+ * ONE value, not three, unlike `internal_db_*`. That split existed because a
90
+ * slow query, an exhausted pool and an unknown SQLSTATE have different owners
91
+ * and different fixes. Here there is only one story to tell — an origin we run
92
+ * did not answer the edge — and one owner. A bucket with no distinct owner per
93
+ * value is decoration; #724 is what happens when a class holds several
94
+ * situations, and inventing sub-values ahead of a reason to act on them
95
+ * differently is the same mistake with the sign flipped.
96
+ *
97
+ * METRICS ONLY, exactly like PLATFORM_KEY_ERROR_CLASS and the internal_db
98
+ * values. `classifyToolError` still answers `upstream_down` for the retry and
99
+ * hint paths, which only care whether retrying or a sibling tool might work —
100
+ * and it might. Nothing a caller sees or is charged changes here.
101
+ *
102
+ * READ SIDE: this value is in BROKEN_TOOL_CLASSES, FAULT_CLASSES and
103
+ * ALL_ERROR_CLASSES in `workers/registry-api/src/index.ts`. All three, or it
104
+ * lands on no dashboard — fleet #721 is the warning, where the #719 split
105
+ * worked on the write side and was invisible for weeks.
106
+ */
107
+ const INTERNAL_SERVICE_UNREACHABLE_CLASS = 'internal_service_unreachable';
108
+
109
+ /**
110
+ * The token that carries "this origin is ours" from the call site to the
111
+ * classifier.
112
+ *
113
+ * Appended to the error message rather than attached to the Error object,
114
+ * because the object does not survive the trip: 275 packs return `{ error:
115
+ * string }` instead of throwing, the gateway reads `observedError` as a string,
116
+ * and the fleet pack rebuilds its error from a captured status + body across a
117
+ * retry loop. A property on an Error would be dropped by every one of those
118
+ * paths and the class would work in tests and vanish in production.
119
+ *
120
+ * WORDING IS LOAD-BEARING, same rule as labelAge's note in authority.ts. This
121
+ * string is appended to a pack's thrown Error message (shared/src/http.ts),
122
+ * and a thrown Error's message is exactly what the gateway hands back to the
123
+ * caller as `content[0].text` when nothing rewrites it (workers/gateway/src
124
+ * catches the throw and sets `rawResult.message = stripClassPrefix(error)`,
125
+ * which does not touch this suffix) — so the original wording,
126
+ * " [pipeworx-hosted origin — our own service, not a third party]", was not a
127
+ * theoretical leak: it shipped live on pipeworx-catalog's 522s, 7 times in 6
128
+ * hours on 2026-09-02 (see tests/golden-internal-service.test.ts), verbatim
129
+ * naming Pipeworx as the host. check:hosting-claims never caught it because it
130
+ * did not scan shared/ at all (task #2009). Reworded to describe the
131
+ * OBSERVATION (the origin did not answer) without a claim about who runs it —
132
+ * the identical fix labelAge got: drop the possessive, keep the fact.
133
+ */
134
+ const INTERNAL_ORIGIN_MARKER = ' [origin did not respond — retry before concluding the named source is down]';
135
+
136
+ /**
137
+ * Supabase's data plane for a project is `<ref>.supabase.co`, where the ref is
138
+ * exactly twenty lowercase letters (ours is `pqauisounztsgdgfkhke`).
139
+ *
140
+ * Matching the shape rather than listing the ref keeps this correct when we add
141
+ * a project — `supabaseEnv` on a pack entry already points some packs at a
142
+ * second one — while still excluding `status.supabase.co`, which is Supabase's
143
+ * own status page and emphatically not our database. Verified 2026-09-02 by
144
+ * `grep -rhoE '[a-z0-9-]+\.supabase\.(co|in)' mcps shared workers scripts`: the
145
+ * only real project ref anywhere in the tree is ours, the rest are doc
146
+ * placeholders (`abc`, `xyz`, `example`) which this pattern also excludes. Same
147
+ * finding internal-db-class.ts relies on for the PostgREST envelope being ours
148
+ * by construction.
149
+ */
150
+ const SUPABASE_PROJECT_HOST = /^[a-z]{20}\.supabase\.(co|in)$/;
151
+
152
+ /**
153
+ * Is this a host WE run?
154
+ *
155
+ * Deliberately NOT including `*.workers.dev`: plenty of third-party APIs are
156
+ * hosted on workers.dev, so the suffix says where something runs and not who
157
+ * owns it. Every internal call we actually make goes to a `pipeworx.io`
158
+ * hostname or to our Supabase project, both of which are ownership facts.
159
+ *
160
+ * `workers/gateway/src/provenance.ts`'s `OUR_HOSTS` answers the same
161
+ * question and DOES include `workers.dev` — a documented divergence
162
+ * (task #2051), not a bug to converge. That list decides what a response may
163
+ * cite as a data SOURCE, where a false negative (citing our own worker as an
164
+ * external source) is the hosting-disclosure leak this whole file exists to
165
+ * prevent, so it errs broad. This one decides who gets BLAMED for a 5xx in
166
+ * outage metrics read by on-call, where a false positive (crediting our own
167
+ * infra with a third party's outage) hides the real failure, so it errs
168
+ * narrow. Same suffix, opposite direction, because they are never called for
169
+ * the same reason.
170
+ *
171
+ * Returns false on anything unparseable rather than throwing — this runs inside
172
+ * an error path, and an error path that can itself throw turns a diagnosable
173
+ * failure into a mystery.
174
+ */
175
+ function isPipeworxOrigin(url: string | URL | undefined | null): boolean {
176
+ if (!url) return false;
177
+ let host: string;
178
+ try {
179
+ host = new URL(url instanceof URL ? url.href : url).hostname.toLowerCase();
180
+ } catch {
181
+ return false;
182
+ }
183
+ if (host === 'pipeworx.io' || host.endsWith('.pipeworx.io')) return true;
184
+ return SUPABASE_PROJECT_HOST.test(host);
185
+ }
186
+
187
+ /**
188
+ * Append the marker when this failure was OUR origin failing to answer.
189
+ *
190
+ * `status` is the HTTP status when there is one, and omitted for a timeout —
191
+ * where there is no response at all, and "the origin did not answer" is the
192
+ * whole observation. Statuses below 500 are left alone: a 404 from our own
193
+ * registry for a slug that does not exist is the caller's argument, not our
194
+ * outage, and marking it would put ordinary 404s on the incident dashboard.
195
+ *
196
+ * Idempotent, so a message that is wrapped and re-marked on the way up (the
197
+ * fleet pack's retry loop re-throws through two layers) carries the marker once.
198
+ */
199
+ function markInternalOrigin(
200
+ message: string,
201
+ url: string | URL | undefined | null,
202
+ status?: number,
203
+ ): string {
204
+ if (status !== undefined && status < 500) return message;
205
+ if (!isPipeworxOrigin(url)) return message;
206
+ if (message.includes(INTERNAL_ORIGIN_MARKER)) return message;
207
+ return message + INTERNAL_ORIGIN_MARKER;
208
+ }
209
+
210
+ /**
211
+ * Which blob4 value a failure from our own web services books as, or undefined
212
+ * if this is not one.
213
+ *
214
+ * Ordered AFTER `internalDbMetricsClass` at the call site: a PostgREST envelope
215
+ * from our own Supabase is a strictly more specific statement about the same
216
+ * row (which of our services, and why), and the two cannot disagree about
217
+ * whether the failure is ours.
218
+ */
219
+ function internalHostMetricsClass(error: string): string | undefined {
220
+ return error.includes(INTERNAL_ORIGIN_MARKER) ? INTERNAL_SERVICE_UNREACHABLE_CLASS : undefined;
221
+ }
222
+
223
+
224
+ /**
225
+ * One place to turn a failed `fetch` into an error a caller can act on.
226
+ *
227
+ * Nearly every pack was written the same way:
228
+ *
229
+ * if (!res.ok) throw new Error(`Unsplash: ${res.status}`);
230
+ *
231
+ * which discards the response body — and the body is usually where the upstream
232
+ * says what was actually wrong ("**symbol** not found: GBP", "parameter `year`
233
+ * out of range", "unknown taxonomy id"). The caller gets a number, cannot
234
+ * self-correct, and retries the same broken call. A 2026-07-31 sweep found this
235
+ * shape in 481 of 1,400 packs, 47 of them PLATFORM-keyed.
236
+ *
237
+ * It also hides bugs one level down. Two of the first three packs audited had a
238
+ * second defect that only existed because of this line: unsplash's rate-limit
239
+ * branch sat BELOW a catch-all and was unreachable, and bea-gov parsed
240
+ * `BEAAPI.Error.APIErrorDescription` below a `!res.ok` throw that made the
241
+ * parsing dead code for every non-200.
242
+ *
243
+ * DELIBERATELY NOT A CLASSIFIER. It does not add `user_error:` /
244
+ * `upstream_down:` prefixes. Those decide which tier a failure lands in, and the
245
+ * `error` tier is what the daily problem-tools list is built from — it means
246
+ * "Pipeworx has a defect". A 400 is genuinely ambiguous: often a caller's bad
247
+ * argument, but sometimes a query WE built wrong (ted-eu comma-joined its CPV
248
+ * values into something TED rejected, and that bug was found only because it sat
249
+ * in `error`). Blanket-classifying 400s as caller mistakes would have hidden it.
250
+ * A pack that KNOWS which it is should keep saying so explicitly; this helper is
251
+ * for the 481 that say nothing at all.
252
+ */
253
+
254
+ /** Longest upstream explanation we'll pass through. Enough for a real message,
255
+ * short enough that an HTML page or a stack trace can't swamp the error. */
256
+
257
+ const MAX_DETAIL = 300;
258
+
259
+ /**
260
+ * Default bound for `fetchWithTimeout` when a pack doesn't state its own.
261
+ *
262
+ * 25s mirrors the number `epo-ops` landed on after measuring the real failure:
263
+ * a degraded upstream that doesn't error, it just never answers, and a Worker
264
+ * sits in `await fetch()` until ITS OWN execution budget kills the request —
265
+ * which can take minutes, not seconds (epo_ops_search_patents measured 4-8
266
+ * MINUTE hangs before this existed). 25s is short enough that a caller gets a
267
+ * fast, actionable error instead of holding the connection, and long enough
268
+ * that it doesn't false-trip on a merely-slow-but-alive upstream.
269
+ */
270
+ const DEFAULT_FETCH_TIMEOUT_MS = 25_000;
271
+
272
+ /**
273
+ * Read the body of a failed response and fold it into a throwable Error.
274
+ *
275
+ * Usage — note the `await`, which is the one thing that makes this a mechanical
276
+ * change rather than a drop-in:
277
+ *
278
+ * if (!res.ok) throw await httpError(res, 'Unsplash');
279
+ *
280
+ * Safe to call on any non-ok response: a body that is missing, empty, unreadable
281
+ * or HTML degrades to exactly the old `Name: 404` string rather than throwing
282
+ * something new from inside the error path.
283
+ */
284
+ async function httpError(res: Response, name: string): Promise<Error> {
285
+ return new Error(await httpErrorMessage(res, name));
286
+ }
287
+
288
+ /** The message text without constructing an Error — for packs that need to wrap
289
+ * it in their own envelope or add an explicit classification prefix. */
290
+ async function httpErrorMessage(res: Response, name: string): Promise<string> {
291
+ // The one place a 5xx from a host WE run gets stamped as ours. `res.url` is
292
+ // the URL the fetch actually resolved to (after redirects), so this is a fact
293
+ // about the call rather than a guess from the `name` the pack passed in —
294
+ // reword that label freely, the class does not move. See
295
+ // internal-host-class.ts; no-op for every third-party upstream, which is why
296
+ // this touches 481 packs' error text and changes none of it.
297
+ return markInternalOrigin(
298
+ `${name}: ${res.status}${detailSuffix(await readDetail(res))}`,
299
+ res.url,
300
+ res.status,
301
+ );
302
+ }
303
+
304
+ /**
305
+ * Just the upstream's own explanation — no name, no status.
306
+ *
307
+ * For a pack that has already said both in its own sentence. epo-ops reads
308
+ * `EPO rejected this search as too large (HTTP 413) — ${httpErrorMessage(…)}`,
309
+ * which rendered as `… (HTTP 413) — EPO: 413.` once the XML detail was being
310
+ * dropped: the upstream named twice, the status twice, and the one thing EPO
311
+ * actually said ("Not enough characters before truncation character") nowhere
312
+ * (fleet #712). Returns '' when the body carries nothing readable, so a caller
313
+ * can fall back to its own wording.
314
+ */
315
+ async function upstreamDetail(res: Response): Promise<string> {
316
+ return readDetail(res);
317
+ }
318
+
319
+ /**
320
+ * Read a SUCCESSFUL response as JSON, failing loudly when it isn't JSON.
321
+ *
322
+ * `httpError` above only ever runs on `!res.ok`, which leaves the nastier half
323
+ * of the problem unhandled: an upstream that answers **HTTP 200 with an HTML
324
+ * page**. A bot wall, a login redirect, a maintenance interstitial and a CDN
325
+ * error page are all 200s, so `res.ok` is true, and `res.json()` then throws
326
+ * `Unexpected token '<', "<!DOCTYPE "... is not valid JSON`.
327
+ *
328
+ * That string is the problem. It names no upstream, carries no status, and
329
+ * reads like a parser bug in Pipeworx — so it lands in the `error` tier, which
330
+ * means "we have a defect", and the caller is told nothing they can act on.
331
+ * data.govt.nz sat dead behind an Imperva challenge this way and every
332
+ * status-code health check we own reported it green (7889a845). A zero-length
333
+ * body has the same shape: `Unexpected end of JSON input`, seen this week on
334
+ * uk-gazette (83% of external calls) and census.
335
+ *
336
+ * UNLIKE `httpError`, this one DOES classify, and the asymmetry is deliberate.
337
+ * A 400 is genuinely ambiguous — often the caller's bad argument, sometimes a
338
+ * query we built wrong — so blanket-classifying it would hide our own bugs.
339
+ * There is no such ambiguity here: **no argument a caller can pass makes a JSON
340
+ * API return an HTML page.** It is always the upstream, so `upstream_down:` is
341
+ * a statement of fact rather than a guess, and it keeps these out of the
342
+ * problem-tools list where they crowd out real defects.
343
+ *
344
+ * const data = await parseJson<Feed>(res, 'UK Gazette');
345
+ *
346
+ * Call it only after the `!res.ok` check — on a failed response you want
347
+ * `httpError`, which mines the body for the upstream's own explanation.
348
+ */
349
+ async function parseJson<T>(res: Response, name: string): Promise<T> {
350
+ let raw: string;
351
+ try {
352
+ raw = await res.text();
353
+ } catch {
354
+ throw new Error(
355
+ `upstream_down: ${name} returned a body that could not be read (HTTP ${res.status}). ` +
356
+ 'The connection most likely dropped mid-response; retrying is reasonable.',
357
+ );
358
+ }
359
+
360
+ const type = res.headers.get('content-type') ?? 'no content-type';
361
+
362
+ if (!raw.trim()) {
363
+ throw new Error(
364
+ `upstream_down: ${name} answered HTTP ${res.status} with an EMPTY body where JSON was expected (${type}). ` +
365
+ 'Nothing about the request can cause this — it is an upstream fault, and the same call may well work on retry.',
366
+ );
367
+ }
368
+
369
+ // Checked before parsing rather than in the catch, because knowing it is
370
+ // markup is what turns "we failed to parse something" into "they served a
371
+ // web page" — the second is diagnosable, the first is not.
372
+ const head = raw.slice(0, 200).trimStart().toLowerCase();
373
+ if (head.startsWith('<!doctype') || head.startsWith('<html') || head.startsWith('<?xml')) {
374
+ const kind = head.startsWith('<?xml') ? 'an XML document' : 'an HTML page';
375
+ // The summary, not the source. Pasting the first 120 characters of a web
376
+ // page handed the agent `<!DOCTYPE html><html lang="en"…` — the same leak
377
+ // this branch exists to describe (fleet #712).
378
+ throw new Error(
379
+ `upstream_down: ${name} answered HTTP ${res.status} with ${kind} instead of JSON (${type}). ` +
380
+ 'That is typically a bot wall, a login redirect or a maintenance page — it is returned as a SUCCESS, ' +
381
+ `so status-code health checks read it as fine. No argument change will get past it. ` +
382
+ `The page says: ${summarizeErrorBody(raw) || 'nothing readable'}`,
383
+ );
384
+ }
385
+
386
+ try {
387
+ return JSON.parse(raw) as T;
388
+ } catch {
389
+ throw new Error(
390
+ `upstream_down: ${name} answered HTTP ${res.status} with a body that is not valid JSON (${type}). ` +
391
+ `It begins: ${stripMarkup(raw).slice(0, 120) || '(unreadable)'}`,
392
+ );
393
+ }
394
+ }
395
+
396
+ /**
397
+ * `fetch`, but bounded — the fix for a systemic gap found 2026-08-30: a grep
398
+ * audit of every pack's `mcps/*\/src/index.ts` found 1,339 of ~1,500 call
399
+ * `fetch()` with NO timeout guard anywhere in the file. Two of those
400
+ * (epo-ops, statcan) were confirmed live-hanging for 4-8 minutes before this
401
+ * existed — every unguarded call carries the same risk, just unconfirmed.
402
+ *
403
+ * Mirrors the `epoFetch` wrapper `mcps/epo-ops/src/index.ts` shipped first:
404
+ * bound the request with `AbortSignal.timeout`, and on a timeout/abort throw
405
+ * an `upstream_down:` error that names the upstream and the bound rather than
406
+ * letting the raw `TimeoutError`/`AbortError` (which names neither) propagate.
407
+ * `upstream_down:` is deliberate, same reasoning as `parseJson` above — no
408
+ * argument a caller passes can make an upstream hang, so it is always the
409
+ * upstream's fault, and marking it that way keeps a slow API off the
410
+ * problem-tools list where it would crowd out our own defects.
411
+ *
412
+ * Usage — a mechanical swap for a bare `fetch(url, init)`:
413
+ *
414
+ * const res = await fetchWithTimeout(url, init, 'Some API');
415
+ *
416
+ * Pass `timeoutMs` as a fourth argument to override the default for a pack
417
+ * with a known-slower upstream; the label should be the same short name you'd
418
+ * pass to `httpError`/`httpErrorMessage` for that call.
419
+ */
420
+ async function fetchWithTimeout(
421
+ url: string | URL,
422
+ init: RequestInit = {},
423
+ name: string,
424
+ timeoutMs: number = DEFAULT_FETCH_TIMEOUT_MS,
425
+ ): Promise<Response> {
426
+ try {
427
+ return await fetch(url, { ...init, signal: AbortSignal.timeout(timeoutMs) });
428
+ } catch (err) {
429
+ if (err instanceof Error && (err.name === 'TimeoutError' || err.name === 'AbortError')) {
430
+ // States the OBSERVATION (no response in N seconds), not a diagnosis.
431
+ // "appears to be degraded" is an inference about the vendor that we have
432
+ // not checked, and it is wrong in a way that misdirects whoever reads it:
433
+ // a timeout from a Worker can equally mean OUR egress is blocked.
434
+ //
435
+ // Measured today (2026-09-01, fleet #1047): every call to
436
+ // mainnet.base.org failed from the x402 facilitator while the identical
437
+ // request from a laptop returned 200. Base was entirely healthy; the
438
+ // public RPC refuses Cloudflare Worker egress. Had this message fired
439
+ // there it would have blamed Base by name, and the next person would have
440
+ // waited for a vendor outage to clear that did not exist.
441
+ // A timeout has no status to test — there is no response at all — so
442
+ // `markInternalOrigin` is called without one: an origin we run that never
443
+ // answered is an availability failure by definition. This is the half of
444
+ // fleet #1096 with neither a SQLSTATE nor a status code to key on.
445
+ throw new Error(
446
+ markInternalOrigin(
447
+ `upstream_down: ${name} did not respond within ${timeoutMs / 1000}s. ` +
448
+ `That can be ${name} being slow or down, or this environment being unable to reach it ` +
449
+ `(some hosts refuse datacenter/Worker egress) — retry shortly, and check reachability ` +
450
+ `from elsewhere before concluding ${name} is down.`,
451
+ url,
452
+ ),
453
+ );
454
+ }
455
+ throw err;
456
+ }
457
+ }
458
+
459
+ function detailSuffix(detail: string): string {
460
+ return detail ? ` — ${detail}` : '';
461
+ }
462
+
463
+ async function readDetail(res: Response): Promise<string> {
464
+ let raw: string;
465
+ try {
466
+ raw = await res.text();
467
+ } catch {
468
+ // Body already consumed, or the connection died mid-read. The status alone
469
+ // is still worth throwing — never let the error path throw its own error.
470
+ return '';
471
+ }
472
+ return summarizeErrorBody(raw);
473
+ }
474
+
475
+ /**
476
+ * Turn ANY error body — JSON, HTML, XML or plain text — into one short phrase
477
+ * that never contains markup.
478
+ *
479
+ * This used to just drop an HTML or XML body on the floor, on the reasoning
480
+ * that markup crowds out the status. That was half right. Dropping it loses the
481
+ * one sentence a caller could have acted on: an `Access Denied` title, an SDMX
482
+ * `<message:Error>` text, an OPS fault string. A 2026-08-30 support sweep
483
+ * measured 13 of 291 caller-facing error rows carrying a raw page or document
484
+ * verbatim, across 11 packs, and in every one of them the useful content —
485
+ * "Access Denied", "Invalid country code", "SCRAPE_TIMEOUT" — was in there,
486
+ * buried in markup the agent had to parse out of a string (fleet #712).
487
+ *
488
+ * So: extract the meaning, discard the markup. The output is passed through
489
+ * `stripMarkup` unconditionally, which is what lets `check:error-body-leak`
490
+ * assert mechanically that no caller-facing message can contain `<?xml`,
491
+ * `<!DOCTYPE` or `<html`.
492
+ */
493
+ function summarizeErrorBody(raw: string): string {
494
+ if (!raw || !raw.trim()) return '';
495
+
496
+ const head = raw.slice(0, 400).trimStart().toLowerCase();
497
+
498
+ // An HTML error page (Cloudflare interstitial, nginx default, a login
499
+ // redirect) says what it is in its <title>, and almost nowhere else.
500
+ if (head.startsWith('<!doctype') || head.startsWith('<html')) {
501
+ const title = htmlTitle(raw);
502
+ return title
503
+ ? `${title} (upstream returned an HTML error page, not an API response)`
504
+ : 'upstream returned an HTML error page, not an API response';
505
+ }
506
+
507
+ // XML fault documents — EPO OPS, SDMX (`<message:Error>`), SOAP faults. The
508
+ // human sentence sits in a child element whose tag name says what it is.
509
+ if (head.startsWith('<?xml') || head.startsWith('<')) {
510
+ const fault = xmlFaultText(raw);
511
+ return fault
512
+ ? `${stripMarkup(fault).slice(0, MAX_DETAIL)} (from the upstream's XML error document)`
513
+ : 'upstream returned an XML error document with no readable message';
514
+ }
515
+
516
+ // Most JSON error bodies bury one human sentence among ids and echoed request
517
+ // params. Prefer that sentence; fall back to the whole body when the shape is
518
+ // unfamiliar, since an unfamiliar shape is exactly when we can least afford to
519
+ // guess wrong and show nothing.
520
+ const fromJson = messageFromJson(raw);
521
+ return stripMarkup(fromJson ?? raw).slice(0, MAX_DETAIL);
522
+ }
523
+
524
+ /** The `<title>` of an HTML error page, or its first `<h1>` — the two places a
525
+ * bot wall, a 502 and an "Access Denied" all state what happened. */
526
+ function htmlTitle(raw: string): string | null {
527
+ const head = raw.slice(0, 4000);
528
+ for (const re of [/<title[^>]*>([\s\S]*?)<\/title>/i, /<h1[^>]*>([\s\S]*?)<\/h1>/i]) {
529
+ const m = re.exec(head);
530
+ const text = m ? stripMarkup(m[1]) : '';
531
+ if (text) return text.slice(0, 160);
532
+ }
533
+ return null;
534
+ }
535
+
536
+ /** Tag names that carry the explanation in an XML fault document, namespace
537
+ * prefix optional (`<message:Error>`, `<com:Text>`, `<faultstring>`). */
538
+ const XML_FAULT_TAG_RE =
539
+ /<(?:[A-Za-z0-9_.-]+:)?(?:text|message|description|faultstring|reason|detail|title|errormessage|error)\b[^>]*>([^<]{2,400})</i;
540
+
541
+ function xmlFaultText(raw: string): string | null {
542
+ const head = raw.slice(0, 8000);
543
+ const tagged = XML_FAULT_TAG_RE.exec(head);
544
+ if (tagged && tagged[1].trim()) return tagged[1];
545
+
546
+ // Nothing conventionally named — take the longest text node instead. A fault
547
+ // document with one sentence in an oddly named element is still readable;
548
+ // returning nothing at all is not.
549
+ let best = '';
550
+ for (const m of head.matchAll(/>([^<>]{8,400})</g)) {
551
+ const text = m[1].trim();
552
+ if (text.length > best.length) best = text;
553
+ }
554
+ return best || null;
555
+ }
556
+
557
+ /**
558
+ * Remove every tag and stray angle bracket, then collapse whitespace.
559
+ *
560
+ * Applied to everything on the way out, including the JSON and plain-text
561
+ * paths, because an upstream is free to embed markup in a JSON string field —
562
+ * and a leak is a leak regardless of which branch produced it.
563
+ */
564
+ function stripMarkup(s: string): string {
565
+ return collapse(decodeEntities(s.replace(/<[^>]*>/g, ' ')).replace(/[<>]/g, ' '));
566
+ }
567
+
568
+ /** The handful of entities that show up in error-page titles. Decoded AFTER
569
+ * tags are stripped and BEFORE the angle-bracket sweep, so `&lt;script&gt;`
570
+ * in a title cannot decode into markup that survives — EMBL-EBI's ChEMBL 500
571
+ * page renders as `500 Internal Server Error &lt; EMBL-EBI` otherwise. */
572
+ function decodeEntities(s: string): string {
573
+ return s
574
+ .replace(/&(?:amp|#0*38);/gi, '&')
575
+ .replace(/&(?:lt|#0*60);/gi, '<')
576
+ .replace(/&(?:gt|#0*62);/gi, '>')
577
+ .replace(/&(?:quot|#0*34);/gi, '"')
578
+ .replace(/&(?:#0*39|apos|#x0*27);/gi, "'")
579
+ .replace(/&nbsp;/gi, ' ');
580
+ }
581
+
582
+ /** The conventional "what went wrong" field, under any of the names upstreams
583
+ * actually use. Checked in order; first non-empty string wins. */
584
+ const MESSAGE_KEYS = [
585
+ 'message', 'error_message', 'errorMessage', 'detail', 'details',
586
+ 'description', 'error_description', 'reason', 'title', 'fault',
587
+ ];
588
+
589
+ function messageFromJson(raw: string): string | null {
590
+ let parsed: unknown;
591
+ try {
592
+ parsed = JSON.parse(raw);
593
+ } catch {
594
+ return null;
595
+ }
596
+ return pickMessage(parsed, 0);
597
+ }
598
+
599
+ function pickMessage(node: unknown, depth: number): string | null {
600
+ // Two levels covers `{error: {message}}` and `{errors: [{detail}]}`, the two
601
+ // shapes that account for nearly all of them, without walking a large payload.
602
+ if (depth > 2 || node == null) return null;
603
+
604
+ if (typeof node === 'string') return node.trim() || null;
605
+
606
+ if (Array.isArray(node)) {
607
+ for (const item of node) {
608
+ const found = pickMessage(item, depth + 1);
609
+ if (found) return found;
610
+ }
611
+ return null;
612
+ }
613
+
614
+ if (typeof node !== 'object') return null;
615
+ const obj = node as Record<string, unknown>;
616
+
617
+ for (const key of MESSAGE_KEYS) {
618
+ const v = obj[key];
619
+ if (typeof v === 'string' && v.trim()) return v.trim();
620
+ }
621
+ // `{error: …}` where error is itself an object or a string — the single most
622
+ // common wrapper, so it is worth descending into by name rather than scanning
623
+ // every key and risking picking up an echoed request parameter.
624
+ for (const key of ['error', 'errors', 'fault', 'Error', 'data']) {
625
+ if (key in obj) {
626
+ const found = pickMessage(obj[key], depth + 1);
627
+ if (found) return found;
628
+ }
629
+ }
630
+ return null;
631
+ }
632
+
633
+ /** Errors are read in a single line of log output; newlines and runs of
634
+ * whitespace make a multi-line body unreadable there. */
635
+ function collapse(s: string): string {
636
+ return s.replace(/\s+/g, ' ').trim();
637
+ }
638
+ /**
639
+ * CIViC — Clinical Interpretation of Variants in Cancer.
640
+ *
641
+ * Open, expert-curated knowledgebase of the clinical significance of somatic
642
+ * cancer variants, served from https://civicdb.org/api/graphql with no key.
643
+ * Every claim in CIViC is an evidence item tied to a published source, graded
644
+ * by level (A practice-changing … E inferential) and star rating.
645
+ *
646
+ * TRAP: `description` on the BrowseFeature type 500s upstream — it is declared
647
+ * in the schema but blows up in their resolver. Do not put it back into the
648
+ * feature selection set; the gene description comes from the Gene type via
649
+ * civic_search_genes' second leg instead.
650
+ */
651
+
652
+
653
+ const ENDPOINT = 'https://civicdb.org/api/graphql';
654
+ const UA = 'pipeworx-mcp-civic/1.0 (+https://pipeworx.io)';
655
+
656
+ /**
657
+ * TRAP, and it is a silent zero: CIViC treats an EXPLICITLY NULL variable as a
658
+ * filter for "this column is null", not as "no filter". Measured 2026-09-17 —
659
+ * `evidenceItems(molecularProfileName: "BRAF V600E")` reports 249 matches;
660
+ * adding `variantId: null` reports 0, `diseaseName: null` reports 245 and
661
+ * `therapyName: null` reports 313. All four are HTTP 200. So an unset filter
662
+ * must be OMITTED from the variables map entirely, never sent as null.
663
+ */
664
+ function omitNulls(vars: Record<string, unknown>): Record<string, unknown> {
665
+ return Object.fromEntries(Object.entries(vars).filter(([, v]) => v !== null && v !== undefined));
666
+ }
667
+
668
+ async function gql(query: string, rawVariables: Record<string, unknown>): Promise<Record<string, unknown>> {
669
+ const variables = omitNulls(rawVariables);
670
+ const res = await fetchWithTimeout(
671
+ ENDPOINT,
672
+ {
673
+ method: 'POST',
674
+ headers: { 'User-Agent': UA, 'content-type': 'application/json', accept: 'application/json' },
675
+ body: JSON.stringify({ query, variables }),
676
+ },
677
+ 'CIViC',
678
+ 45_000,
679
+ );
680
+ const body = await res.text();
681
+ if (!res.ok) {
682
+ throw new Error(`CIViC GraphQL returned HTTP ${res.status}: ${summarizeErrorBody(body)}`);
683
+ }
684
+ let json: { data?: Record<string, unknown>; errors?: { message?: string }[] };
685
+ try {
686
+ json = JSON.parse(body) as typeof json;
687
+ } catch {
688
+ throw new Error(`CIViC GraphQL returned a non-JSON response: ${summarizeErrorBody(body)}`);
689
+ }
690
+ if (json.errors?.length) {
691
+ throw new Error(`CIViC GraphQL error: ${json.errors.map((e) => e.message ?? '?').join('; ')}`);
692
+ }
693
+ if (!json.data) throw new Error('CIViC GraphQL returned no data block');
694
+ return json.data;
695
+ }
696
+
697
+ function num(v: unknown, fallback: number, min: number, max: number): number {
698
+ const n = typeof v === 'number' ? v : typeof v === 'string' ? Number(v) : NaN;
699
+ if (!Number.isFinite(n)) return fallback;
700
+ return Math.min(max, Math.max(min, Math.trunc(n)));
701
+ }
702
+
703
+ function reqStr(args: Record<string, unknown>, key: string, example: string): string {
704
+ const v = args[key];
705
+ if (typeof v !== 'string' || !v.trim()) {
706
+ throw new Error(`"${key}" is required (e.g. "${example}")`);
707
+ }
708
+ return v.trim();
709
+ }
710
+
711
+ function optStr(args: Record<string, unknown>, key: string): string | undefined {
712
+ const v = args[key];
713
+ return typeof v === 'string' && v.trim() ? v.trim() : undefined;
714
+ }
715
+
716
+ function link(path: unknown): string | null {
717
+ return typeof path === 'string' ? `https://civicdb.org${path}` : null;
718
+ }
719
+
720
+ const tools: McpToolExport['tools'] = [
721
+ {
722
+ name: 'civic_search_genes',
723
+ description:
724
+ 'Find cancer genes and fusions in CIViC by name or symbol, with how much curated clinical evidence each carries (variant count, evidence-item count, assertion count). AUTHORITATIVE starting point for "what does CIViC know about gene X" — CIViC is the open expert-curated knowledgebase of clinically actionable somatic cancer variants. Returns the numeric CIViC feature id you pass to the other tools.',
725
+ inputSchema: {
726
+ type: 'object' as const,
727
+ properties: {
728
+ query: { type: 'string', description: 'Gene symbol or partial name (e.g. "BRAF", "EGFR", "ALK")' },
729
+ limit: { type: 'number', description: 'Max features to return, 1-100 (default 25)' },
730
+ },
731
+ required: ['query'],
732
+ },
733
+ },
734
+ {
735
+ name: 'civic_gene_variants',
736
+ description:
737
+ 'Curated variants of a cancer gene in CIViC — the specific alterations (missense, fusion, amplification, exon-level) that have published clinical interpretations, each with its evidence count, associated diseases and therapies. AUTHORITATIVE for "which variants of this gene are clinically actionable". Pass the gene symbol.',
738
+ inputSchema: {
739
+ type: 'object' as const,
740
+ properties: {
741
+ gene: { type: 'string', description: 'Gene symbol (e.g. "BRAF")' },
742
+ variant_name: { type: 'string', description: 'Optional substring filter on the variant name (e.g. "V600")' },
743
+ limit: { type: 'number', description: 'Max variants to return, 1-100 (default 25)' },
744
+ },
745
+ required: ['gene'],
746
+ },
747
+ },
748
+ {
749
+ name: 'civic_variant_evidence',
750
+ description:
751
+ 'Individual CIViC evidence items for a molecular profile — the graded, source-linked statements that a variant predicts response or resistance to a therapy, carries prognostic or diagnostic weight, or is oncogenic. Each item carries evidence type, level (A-E), direction, significance, 1-5 star rating, disease, therapies and the PubMed/ASCO source. AUTHORITATIVE for the clinical evidence behind a variant claim, rather than a summary of it. Pass a molecular profile name such as "BRAF V600E", or a numeric CIViC variant id.',
752
+ inputSchema: {
753
+ type: 'object' as const,
754
+ properties: {
755
+ molecular_profile: {
756
+ type: 'string',
757
+ description: 'Molecular profile name, e.g. "BRAF V600E" or "EGFR L858R"',
758
+ },
759
+ variant_id: { type: 'number', description: 'Numeric CIViC variant id (alternative to molecular_profile)' },
760
+ evidence_type: {
761
+ type: 'string',
762
+ description: 'Filter: PREDICTIVE | DIAGNOSTIC | PROGNOSTIC | PREDISPOSING | ONCOGENIC | FUNCTIONAL',
763
+ },
764
+ disease: { type: 'string', description: 'Filter by disease name substring (e.g. "Melanoma")' },
765
+ therapy: { type: 'string', description: 'Filter by therapy name substring (e.g. "Vemurafenib")' },
766
+ limit: { type: 'number', description: 'Max evidence items to return, 1-100 (default 25)' },
767
+ },
768
+ required: [],
769
+ },
770
+ },
771
+ {
772
+ name: 'civic_assertions',
773
+ description:
774
+ 'CIViC assertions — the curated, AMP/ASCO/CAP-tiered and ACMG-classified clinical summaries that roll up multiple evidence items into a single actionable statement, including FDA companion-test and regulatory-approval flags. AUTHORITATIVE for "is this variant clinically actionable in this disease, and at what tier". Filter by molecular profile, disease or therapy.',
775
+ inputSchema: {
776
+ type: 'object' as const,
777
+ properties: {
778
+ molecular_profile: { type: 'string', description: 'Molecular profile name, e.g. "BRAF V600E"' },
779
+ disease: { type: 'string', description: 'Disease name substring (e.g. "Melanoma")' },
780
+ therapy: { type: 'string', description: 'Therapy name substring (e.g. "Vemurafenib")' },
781
+ limit: { type: 'number', description: 'Max assertions to return, 1-100 (default 25)' },
782
+ },
783
+ required: [],
784
+ },
785
+ },
786
+ ];
787
+
788
+ const FEATURE_Q = `query PwFeatures($name: String, $first: Int) {
789
+ browseFeatures(featureName: $name, first: $first) {
790
+ nodes { id name fullName featureAliases link variantCount evidenceItemCount assertionCount featureInstanceType flagged deprecated }
791
+ }
792
+ }`;
793
+
794
+ const GENE_Q = `query PwGenes($symbols: [String!], $first: Int) {
795
+ genes(entrezSymbols: $symbols, first: $first) {
796
+ nodes { id name entrezId description link featureAliases }
797
+ }
798
+ }`;
799
+
800
+ async function searchGenes(args: Record<string, unknown>): Promise<unknown> {
801
+ const query = reqStr(args, 'query', 'BRAF');
802
+ const limit = num(args.limit, 25, 1, 100);
803
+ // Over-fetch deliberately. browseFeatures substring-matches with no
804
+ // relevance ranking at all, so "BRAF" at first:5 returns five BRAF FUSIONS
805
+ // and not the BRAF gene — the gene sits 9th of 17 matches. Pull the whole
806
+ // match set (it is small: 17 for BRAF, 1132 features in all of CIViC), rank
807
+ // it here, then cut to the caller's limit.
808
+ const data = await gql(FEATURE_Q, { name: query, first: 100 });
809
+ const nodes = ((data.browseFeatures as { nodes?: Record<string, unknown>[] })?.nodes ?? []).map((n) => ({
810
+ feature_id: n.id as number,
811
+ name: n.name as string,
812
+ full_name: (n.fullName as string) ?? null,
813
+ feature_type: (n.featureInstanceType as string) ?? null,
814
+ aliases: (n.featureAliases as string[]) ?? [],
815
+ variant_count: n.variantCount as number,
816
+ evidence_item_count: n.evidenceItemCount as number,
817
+ assertion_count: n.assertionCount as number,
818
+ flagged: n.flagged as boolean,
819
+ deprecated: n.deprecated as boolean,
820
+ url: link(n.link),
821
+ }));
822
+
823
+ // Rank: the exact symbol first, then genes, then fusions and regions.
824
+ // A prefix test alone is useless here — "BRAF::CUL1" starts with "braf".
825
+ const q = query.toLowerCase();
826
+ const rank = (n: { name: string; feature_type: string | null }): number => {
827
+ if (n.name.toLowerCase() === q) return 0;
828
+ if (n.feature_type === 'GENE') return 1;
829
+ return 2;
830
+ };
831
+ const ranked = nodes
832
+ .slice()
833
+ .sort((a, b) => rank(a) - rank(b) || b.evidence_item_count - a.evidence_item_count)
834
+ .slice(0, limit);
835
+
836
+ // Second leg: the human-written gene summary lives on the Gene type. It is
837
+ // NOT on BrowseFeature — asking for it there 500s the whole query.
838
+ const symbols = ranked.filter((n) => n.feature_type === 'GENE').map((n) => n.name);
839
+ let descriptions: Record<string, { entrez_id: number | null; description: string | null }> = {};
840
+ if (symbols.length) {
841
+ const g = await gql(GENE_Q, { symbols, first: symbols.length });
842
+ descriptions = Object.fromEntries(
843
+ ((g.genes as { nodes?: Record<string, unknown>[] })?.nodes ?? []).map((n) => [
844
+ n.name as string,
845
+ { entrez_id: (n.entrezId as number) ?? null, description: (n.description as string) || null },
846
+ ]),
847
+ );
848
+ }
849
+
850
+ return {
851
+ query,
852
+ matched: nodes.length,
853
+ count: ranked.length,
854
+ features: ranked.map((n) => ({ ...n, ...(descriptions[n.name] ?? {}) })),
855
+ source: 'CIViC (civicdb.org) — expert-curated clinical interpretation of cancer variants, CC0',
856
+ };
857
+ }
858
+
859
+ // TRAP: browseVariants.totalCount and browseFeatures.totalCount IGNORE the
860
+ // filter arguments — measured 2026-09-17, `browseVariants(featureName:"BRAF")`
861
+ // and an unfiltered `browseVariants` both report 5029, the whole CIViC variant
862
+ // catalogue. Reporting it as a match count would be a confident wrong number,
863
+ // so it is not selected here. evidenceItems and assertions DO filter their
864
+ // totalCount (249 -> 208 when an evidenceType is added), which is why those
865
+ // two tools report it.
866
+ const VARIANTS_Q = `query PwVariants($feature: String, $variant: String, $first: Int) {
867
+ browseVariants(featureName: $feature, variantName: $variant, first: $first) {
868
+ nodes {
869
+ id name featureName featureId category evidenceItemCount link
870
+ variantTypes { name link }
871
+ diseases { name doid }
872
+ therapies { name ncitId }
873
+ }
874
+ }
875
+ }`;
876
+
877
+ async function geneVariants(args: Record<string, unknown>): Promise<unknown> {
878
+ const gene = reqStr(args, 'gene', 'BRAF');
879
+ const variantName = optStr(args, 'variant_name');
880
+ const limit = num(args.limit, 25, 1, 100);
881
+ const data = await gql(VARIANTS_Q, { feature: gene, variant: variantName ?? null, first: limit });
882
+ const block = data.browseVariants as { nodes?: Record<string, unknown>[] };
883
+ const nodes = (block?.nodes ?? []).map((n) => ({
884
+ variant_id: n.id as number,
885
+ name: n.name as string,
886
+ gene: (n.featureName as string) ?? null,
887
+ feature_id: (n.featureId as number) ?? null,
888
+ category: (n.category as string) ?? null,
889
+ evidence_item_count: n.evidenceItemCount as number,
890
+ variant_types: ((n.variantTypes as { name?: string }[]) ?? []).map((t) => t.name).filter(Boolean),
891
+ diseases: ((n.diseases as { name?: string; doid?: string }[]) ?? []).map((d) => ({
892
+ name: d.name ?? null,
893
+ doid: d.doid ?? null,
894
+ })),
895
+ therapies: ((n.therapies as { name?: string; ncitId?: string }[]) ?? []).map((t) => ({
896
+ name: t.name ?? null,
897
+ ncit_id: t.ncitId ?? null,
898
+ })),
899
+ url: link(n.link),
900
+ }));
901
+ return {
902
+ gene,
903
+ variant_name_filter: variantName ?? null,
904
+ returned: nodes.length,
905
+ more_available: nodes.length === limit,
906
+ variants: nodes,
907
+ source: 'CIViC (civicdb.org) browseVariants',
908
+ };
909
+ }
910
+
911
+ const EVIDENCE_Q = `query PwEvidence($mp: String, $variantId: Int, $disease: String, $therapy: String, $type: EvidenceType, $first: Int) {
912
+ evidenceItems(molecularProfileName: $mp, variantId: $variantId, diseaseName: $disease, therapyName: $therapy, evidenceType: $type, first: $first) {
913
+ totalCount
914
+ nodes {
915
+ id name status evidenceType evidenceLevel evidenceDirection evidenceRating significance variantOrigin link description
916
+ molecularProfile { name }
917
+ disease { name doid }
918
+ therapies { name ncitId }
919
+ source { citationId sourceType title journal publicationYear sourceUrl }
920
+ }
921
+ }
922
+ }`;
923
+
924
+ const EVIDENCE_TYPES = new Set([
925
+ 'PREDICTIVE',
926
+ 'DIAGNOSTIC',
927
+ 'PROGNOSTIC',
928
+ 'PREDISPOSING',
929
+ 'ONCOGENIC',
930
+ 'FUNCTIONAL',
931
+ ]);
932
+
933
+ async function variantEvidence(args: Record<string, unknown>): Promise<unknown> {
934
+ const mp = optStr(args, 'molecular_profile');
935
+ const variantId = typeof args.variant_id === 'number' ? Math.trunc(args.variant_id) : undefined;
936
+ if (!mp && variantId == null) {
937
+ throw new Error('Pass "molecular_profile" (e.g. "BRAF V600E") or "variant_id" (a numeric CIViC variant id)');
938
+ }
939
+ const type = optStr(args, 'evidence_type')?.toUpperCase();
940
+ if (type && !EVIDENCE_TYPES.has(type)) {
941
+ throw new Error(`"evidence_type" must be one of ${[...EVIDENCE_TYPES].join(', ')}`);
942
+ }
943
+ const limit = num(args.limit, 25, 1, 100);
944
+ const data = await gql(EVIDENCE_Q, {
945
+ mp: mp ?? null,
946
+ variantId: variantId ?? null,
947
+ disease: optStr(args, 'disease') ?? null,
948
+ therapy: optStr(args, 'therapy') ?? null,
949
+ type: type ?? null,
950
+ first: limit,
951
+ });
952
+ const block = data.evidenceItems as { totalCount?: number; nodes?: Record<string, unknown>[] };
953
+ const nodes = (block?.nodes ?? []).map((n) => {
954
+ const src = (n.source as Record<string, unknown>) ?? {};
955
+ return {
956
+ evidence_id: n.id as number,
957
+ name: n.name as string,
958
+ status: (n.status as string) ?? null,
959
+ evidence_type: (n.evidenceType as string) ?? null,
960
+ evidence_level: (n.evidenceLevel as string) ?? null,
961
+ evidence_direction: (n.evidenceDirection as string) ?? null,
962
+ significance: (n.significance as string) ?? null,
963
+ star_rating: (n.evidenceRating as number) ?? null,
964
+ variant_origin: (n.variantOrigin as string) ?? null,
965
+ molecular_profile: ((n.molecularProfile as { name?: string })?.name) ?? null,
966
+ disease: ((n.disease as { name?: string })?.name) ?? null,
967
+ disease_doid: ((n.disease as { doid?: string })?.doid) ?? null,
968
+ therapies: ((n.therapies as { name?: string; ncitId?: string }[]) ?? []).map((t) => ({
969
+ name: t.name ?? null,
970
+ ncit_id: t.ncitId ?? null,
971
+ })),
972
+ description: (n.description as string) ?? null,
973
+ source: {
974
+ citation_id: src.citationId ? String(src.citationId) : null,
975
+ source_type: (src.sourceType as string) ?? null,
976
+ title: (src.title as string) ?? null,
977
+ journal: (src.journal as string) ?? null,
978
+ year: (src.publicationYear as number) ?? null,
979
+ url: (src.sourceUrl as string) ?? null,
980
+ },
981
+ url: link(n.link),
982
+ };
983
+ });
984
+ return {
985
+ molecular_profile: mp ?? null,
986
+ variant_id: variantId ?? null,
987
+ matching_evidence_items: block?.totalCount ?? nodes.length,
988
+ returned: nodes.length,
989
+ evidence_items: nodes,
990
+ source: 'CIViC (civicdb.org) evidenceItems — evidence levels A (validated) to E (inferential)',
991
+ };
992
+ }
993
+
994
+ const ASSERTIONS_Q = `query PwAssertions($mp: String, $disease: String, $therapy: String, $first: Int) {
995
+ assertions(molecularProfileName: $mp, diseaseName: $disease, therapyName: $therapy, first: $first) {
996
+ totalCount
997
+ nodes {
998
+ id name status assertionType assertionDirection significance ampLevel summary link
999
+ fdaCompanionTest regulatoryApproval evidenceItemsCount variantOrigin
1000
+ molecularProfile { name }
1001
+ disease { name doid }
1002
+ therapies { name ncitId }
1003
+ acmgCodes { code }
1004
+ nccnGuideline { name }
1005
+ }
1006
+ }
1007
+ }`;
1008
+
1009
+ async function assertions(args: Record<string, unknown>): Promise<unknown> {
1010
+ const mp = optStr(args, 'molecular_profile');
1011
+ const disease = optStr(args, 'disease');
1012
+ const therapy = optStr(args, 'therapy');
1013
+ if (!mp && !disease && !therapy) {
1014
+ throw new Error('Pass at least one of "molecular_profile", "disease" or "therapy"');
1015
+ }
1016
+ const limit = num(args.limit, 25, 1, 100);
1017
+ const data = await gql(ASSERTIONS_Q, {
1018
+ mp: mp ?? null,
1019
+ disease: disease ?? null,
1020
+ therapy: therapy ?? null,
1021
+ first: limit,
1022
+ });
1023
+ const block = data.assertions as { totalCount?: number; nodes?: Record<string, unknown>[] };
1024
+ const nodes = (block?.nodes ?? []).map((n) => ({
1025
+ assertion_id: n.id as number,
1026
+ name: n.name as string,
1027
+ status: (n.status as string) ?? null,
1028
+ assertion_type: (n.assertionType as string) ?? null,
1029
+ assertion_direction: (n.assertionDirection as string) ?? null,
1030
+ significance: (n.significance as string) ?? null,
1031
+ amp_level: (n.ampLevel as string) ?? null,
1032
+ acmg_codes: ((n.acmgCodes as { code?: string }[]) ?? []).map((c) => c.code).filter(Boolean),
1033
+ nccn_guideline: ((n.nccnGuideline as { name?: string })?.name) ?? null,
1034
+ fda_companion_test: (n.fdaCompanionTest as boolean) ?? null,
1035
+ regulatory_approval: (n.regulatoryApproval as boolean) ?? null,
1036
+ evidence_item_count: (n.evidenceItemsCount as number) ?? null,
1037
+ variant_origin: (n.variantOrigin as string) ?? null,
1038
+ molecular_profile: ((n.molecularProfile as { name?: string })?.name) ?? null,
1039
+ disease: ((n.disease as { name?: string })?.name) ?? null,
1040
+ disease_doid: ((n.disease as { doid?: string })?.doid) ?? null,
1041
+ therapies: ((n.therapies as { name?: string; ncitId?: string }[]) ?? []).map((t) => ({
1042
+ name: t.name ?? null,
1043
+ ncit_id: t.ncitId ?? null,
1044
+ })),
1045
+ summary: (n.summary as string) ?? null,
1046
+ url: link(n.link),
1047
+ }));
1048
+ return {
1049
+ molecular_profile: mp ?? null,
1050
+ disease: disease ?? null,
1051
+ therapy: therapy ?? null,
1052
+ matching_assertions: block?.totalCount ?? nodes.length,
1053
+ returned: nodes.length,
1054
+ assertions: nodes,
1055
+ source: 'CIViC (civicdb.org) assertions — AMP/ASCO/CAP tiers and ACMG codes',
1056
+ };
1057
+ }
1058
+
1059
+ async function callTool(name: string, args: Record<string, unknown>): Promise<unknown> {
1060
+ switch (name) {
1061
+ case 'civic_search_genes':
1062
+ return searchGenes(args);
1063
+ case 'civic_gene_variants':
1064
+ return geneVariants(args);
1065
+ case 'civic_variant_evidence':
1066
+ return variantEvidence(args);
1067
+ case 'civic_assertions':
1068
+ return assertions(args);
1069
+ default:
1070
+ throw new Error(`Unknown tool: ${name}`);
1071
+ }
1072
+ }
1073
+
1074
+ export default { tools, callTool, meter: { credits: 1 } } satisfies McpToolExport;