@gtrabanco/pi-nan-provider 0.5.2 → 0.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/AGENTS.md +5 -2
- package/README.es.md +21 -2
- package/README.md +21 -2
- package/package.json +2 -1
- package/scripts/check-nan-mcp-server.ts +426 -0
- package/scripts/models.generated.ts +3 -3
- package/src/fetch-models.ts +45 -14
- package/src/mcp/nan-media.ts +21 -5
- package/src/mcp/stdio-client.ts +1 -1
package/AGENTS.md
CHANGED
|
@@ -115,7 +115,10 @@ Every PR that changes code MUST bump `package.json` version in the same PR; CI p
|
|
|
115
115
|
"growing registry" — use tools/list to discover.
|
|
116
116
|
- Community `nan-mcp-server` (https://github.com/luciferfran/nan-mcp-server):
|
|
117
117
|
stdio MCP server, spawned per tool call (lazy), opt-in NAN_MEDIA_MCP=1,
|
|
118
|
-
version-pinned via NAN_MEDIA_MCP_VERSION (default 1.0.
|
|
118
|
+
version-pinned via NAN_MEDIA_MCP_VERSION (default 1.0.8) or a full command
|
|
119
119
|
override via NAN_MEDIA_MCP_COMMAND. Tools: generate_image, edit_image,
|
|
120
120
|
text_to_speech, list_voices, speech_to_text, embed, rerank, list_models
|
|
121
|
-
(we bridge the audio/image/transcription scope).
|
|
121
|
+
(we bridge the audio/image/transcription scope). An automated check
|
|
122
|
+
(scripts/check-nan-mcp-server.ts + .github/workflows/check-nan-mcp-server-update.yml)
|
|
123
|
+
compares the npm registry against the pin weekly and files a `dependencies` issue
|
|
124
|
+
with a breaking/safe verdict from the live server tool surface (unpkg).
|
package/README.es.md
CHANGED
|
@@ -98,8 +98,27 @@ Variables de entorno:
|
|
|
98
98
|
| Variable | Por defecto | Significado |
|
|
99
99
|
|---|---|---|
|
|
100
100
|
| `NAN_MEDIA_MCP` | — | Override por sesión del puente de media: cualquier valor explícito (incl. `0`) gana al toggle persistido de `/nan-mcp`; sin definir → persistido/por defecto |
|
|
101
|
-
| `NAN_MEDIA_MCP_VERSION` | `1.0.
|
|
102
|
-
| `NAN_MEDIA_MCP_COMMAND` | — | Comando personalizado completo, p. ej. `bunx nan-mcp-server@1.0.
|
|
101
|
+
| `NAN_MEDIA_MCP_VERSION` | `1.0.8` | Versión del servidor fijada para `npx -y nan-mcp-server@<v>` (recomendación de supply-chain del propio proyecto) |
|
|
102
|
+
| `NAN_MEDIA_MCP_COMMAND` | — | Comando personalizado completo, p. ej. `bunx nan-mcp-server@1.0.8` |
|
|
103
|
+
|
|
104
|
+
#### Detección automatizada de actualizaciones
|
|
105
|
+
|
|
106
|
+
Una nueva versión de `nan-mcp-server` no desviará silenciosamente el pin de esta conexión. El
|
|
107
|
+
planificador (`.github/workflows/check-nan-mcp-server-update.yml`) ejecuta `bun run scripts/check-nan-mcp-server.ts`
|
|
108
|
+
semanalmente y, cuando el registro npm muestra una versión más reciente, abre (o refresca) un único
|
|
109
|
+
issue etiquetado `dependencies` que describe si el bump es **breaking** o **seguro**, más la lista de
|
|
110
|
+
commits aguas arriba. Puedes ejecutarlo localmente en cualquier momento:
|
|
111
|
+
|
|
112
|
+
```bash
|
|
113
|
+
bun run check-nan-mcp-server # informe legible
|
|
114
|
+
bun run check-nan-mcp-server --json # JSON para máquina
|
|
115
|
+
bun run check-nan-mcp-server --issue # crea/refresca el issue (requiere GITHUB_TOKEN)
|
|
116
|
+
```
|
|
117
|
+
|
|
118
|
+
La decisión se toma a partir de la *superficie de tools* en vivo (vía unpkg), no de docs obsoletos: si
|
|
119
|
+
el último servidor sigue exponiendo todas las tools conectadas (`generate_image`, `edit_image`,
|
|
120
|
+
`text_to_speech`, `list_voices`, `speech_to_text`), el bump se reporta como **no rompente**; si elimina
|
|
121
|
+
o renombra alguna tool conectada, el issue se marca **breaking** para revisión manual antes de subir.
|
|
103
122
|
| `NAN_MEDIA_MCP_TIMEOUT_MS` | `120000` | Timeout por llamada; el proceso se mata al expirar |
|
|
104
123
|
| `NAN_MCP_TOOLS` | — | Override por sesión del puente oficial: `0`/`false`/`off` desactiva `nan_web_search`; sin definir → persistido/por defecto |
|
|
105
124
|
|
package/README.md
CHANGED
|
@@ -98,8 +98,27 @@ Environment variables:
|
|
|
98
98
|
| Variable | Default | Meaning |
|
|
99
99
|
|---|---|---|
|
|
100
100
|
| `NAN_MEDIA_MCP` | — | Per-session override for the media bridge: any explicit value (incl. `0`) beats the `/nan-mcp` persisted toggle; unset → persisted/default |
|
|
101
|
-
| `NAN_MEDIA_MCP_VERSION` | `1.0.
|
|
102
|
-
| `NAN_MEDIA_MCP_COMMAND` | — | Full custom command, e.g. `bunx nan-mcp-server@1.0.
|
|
101
|
+
| `NAN_MEDIA_MCP_VERSION` | `1.0.8` | Pinned server version for `npx -y nan-mcp-server@<v>` (upstream's own supply-chain recommendation) |
|
|
102
|
+
| `NAN_MEDIA_MCP_COMMAND` | — | Full custom command, e.g. `bunx nan-mcp-server@1.0.8` |
|
|
103
|
+
|
|
104
|
+
#### Automated update detection
|
|
105
|
+
|
|
106
|
+
A newer `nan-mcp-server` release won't silently drift this bridge's pin. The scheduler
|
|
107
|
+
(`.github/workflows/check-nan-mcp-server-update.yml`) runs `bun run scripts/check-nan-mcp-server.ts`
|
|
108
|
+
weekly and, when the npm registry shows a newer version, opens (or refreshes) one
|
|
109
|
+
`dependencies`-labelled issue describing whether the bump is **breaking** or **safe**, plus the
|
|
110
|
+
upstream commit list. Run it locally any time:
|
|
111
|
+
|
|
112
|
+
```bash
|
|
113
|
+
bun run check-nan-mcp-server # human-readable report
|
|
114
|
+
bun run check-nan-mcp-server --json # machine-readable JSON
|
|
115
|
+
bun run check-nan-mcp-server --issue # create/refresh the issue (needs GITHUB_TOKEN)
|
|
116
|
+
```
|
|
117
|
+
|
|
118
|
+
The decision is made from the *live* server tool surface (via unpkg), not from stale docs: if the
|
|
119
|
+
latest server still exposes every bridged tool (`generate_image`, `edit_image`, `text_to_speech`,
|
|
120
|
+
`list_voices`, `speech_to_text`), the bump is reported as **non-breaking**; if it drops or renames a
|
|
121
|
+
bridged tool, the issue is flagged **breaking** for manual review before bumping.
|
|
103
122
|
| `NAN_MEDIA_MCP_TIMEOUT_MS` | `120000` | Per-call timeout; the process is killed after it |
|
|
104
123
|
| `NAN_MCP_TOOLS` | — | Per-session override for the official bridge: `0`/`false`/`off` disables `nan_web_search`; unset → persisted/default |
|
|
105
124
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gtrabanco/pi-nan-provider",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.6.1",
|
|
4
4
|
"description": "NaN Builders (api.nan.builders) model provider for pi - OpenAI-compatible registration with a models.dev-generated fallback, tier-aware live catalog, and MCP bridges (official web search + optional community media server)",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pi",
|
|
@@ -35,6 +35,7 @@
|
|
|
35
35
|
],
|
|
36
36
|
"scripts": {
|
|
37
37
|
"generate-models": "bun run scripts/generate-models.ts",
|
|
38
|
+
"check-nan-mcp-server": "bun run scripts/check-nan-mcp-server.ts",
|
|
38
39
|
"prepublishOnly": "bun run generate-models && bun test && bun run typecheck",
|
|
39
40
|
"test": "bun test",
|
|
40
41
|
"typecheck": "bunx tsc --noEmit"
|
|
@@ -0,0 +1,426 @@
|
|
|
1
|
+
#!/usr/bin/env bun
|
|
2
|
+
/**
|
|
3
|
+
* Detect whether an updated `nan-mcp-server` is available and, if so, decide
|
|
4
|
+
* whether it is safe to bump the pinned version this package bridges.
|
|
5
|
+
*
|
|
6
|
+
* This is the automated companion to the manual "should we update?" question
|
|
7
|
+
* for the community stdio MCP server (`nan-mcp-server`, the media bridge). It
|
|
8
|
+
* exists because pi implements NO MCP client — we bridge the server's tools as
|
|
9
|
+
* native pi tools, and the bridge is pinned to a version via
|
|
10
|
+
* `DEFAULT_NAN_MEDIA_MCP_VERSION`. When the upstream server ships a new
|
|
11
|
+
* version we want a signal, not a silent drift.
|
|
12
|
+
*
|
|
13
|
+
* What it checks (all live, no human guesswork):
|
|
14
|
+
* 1. Latest published `nan-mcp-server` version on the npm registry.
|
|
15
|
+
* 2. Whether the latest version is newer than the pinned version.
|
|
16
|
+
* 3. The *tool surface* of the latest server vs the tools we bridge: if the
|
|
17
|
+
* latest server still exposes every bridged tool, the update is **safe**
|
|
18
|
+
* (non-breaking) even if the implementation changed. If it dropped or
|
|
19
|
+
* renamed a bridged tool, the bump is **breaking** and needs manual
|
|
20
|
+
* review before proceeding — an agent check cannot auto-bump that.
|
|
21
|
+
* 4. The upstream commit list between the pinned and latest versions, so a
|
|
22
|
+
* maintainer sees WHAT changed without re-deriving from stale docs.
|
|
23
|
+
*
|
|
24
|
+
* Output: a single structured `NanMcpServerCheckReport` (JSON). The script
|
|
25
|
+
* exits 0 when up-to-date or when the check cannot be completed (so a cron is
|
|
26
|
+
* quiet unless there is news), and it creates/updates a GitHub issue when an
|
|
27
|
+
* update is available and `GITHUB_TOKEN` is present.
|
|
28
|
+
*
|
|
29
|
+
* Usage:
|
|
30
|
+
* bun run scripts/check-nan-mcp-server.ts # report to stdout
|
|
31
|
+
* bun run scripts/check-nan-mcp-server.ts --json # machine-readable JSON
|
|
32
|
+
* bun run scripts/check-nan-mcp-server.ts --issue # create/update an issue (needs GITHUB_TOKEN)
|
|
33
|
+
*
|
|
34
|
+
* The pure decision logic (`parseVersion`, `compareVersions`, `extractServerTools`,
|
|
35
|
+
* `assessUpdate`, `buildReport`) is exported for unit tests so the whole verdict
|
|
36
|
+
* is verifiable without touching the network. The network fetchers accept an
|
|
37
|
+
* injected `fetch` so tests can stub the registry/unpkg/github sources.
|
|
38
|
+
*
|
|
39
|
+
* Exit codes: 0 always (a cron should be quiet unless a human acts). Use
|
|
40
|
+
* `--json` to consume the report and decide what to do with it.
|
|
41
|
+
*/
|
|
42
|
+
|
|
43
|
+
import {
|
|
44
|
+
DEFAULT_NAN_MEDIA_MCP_VERSION,
|
|
45
|
+
NAN_MEDIA_MCP_SERVER_TOOLS,
|
|
46
|
+
} from "../src/mcp/nan-media.ts";
|
|
47
|
+
|
|
48
|
+
/** npm package name of the community stdio MCP server we bridge. */
|
|
49
|
+
export const NAN_MCP_SERVER_PACKAGE = "nan-mcp-server";
|
|
50
|
+
/** npm registry endpoint for the package's latest release. */
|
|
51
|
+
export const NAN_MCP_SERVER_REGISTRY_URL = "https://registry.npmjs.org/nan-mcp-server/latest";
|
|
52
|
+
/** unpkg CDN path to the published server source, used to extract the tool surface. */
|
|
53
|
+
export const NAN_MCP_SERVER_SOURCE_URL = (version: string) =>
|
|
54
|
+
`https://unpkg.com/nan-mcp-server@${version}/server.js`;
|
|
55
|
+
/** GitHub compare API for the upstream commit list between two tags. */
|
|
56
|
+
export const NAN_MCP_SERVER_COMPARE_URL = (from: string, to: string) =>
|
|
57
|
+
`https://api.github.com/repos/luciferfran/nan-mcp-server/compare/v${from.replace(/^v/, "")}...v${to.replace(/^v/, "")}`;
|
|
58
|
+
|
|
59
|
+
/** GitHub search-issues endpoint used to dedupe the update issue. */
|
|
60
|
+
const GITHUB_SEARCH_ISSUES_URL =
|
|
61
|
+
"https://api.github.com/search/issues?q=" +
|
|
62
|
+
"repo:gtrabanco/pi-nan-provider+is:issue+is:open+in:title" +
|
|
63
|
+
'+label:dependencies+type:issue+"nan-mcp-server update"';
|
|
64
|
+
|
|
65
|
+
/** Label to attach to the auto-created update issue (dedupe key + visibility). */
|
|
66
|
+
export const NAN_MCP_UPDATE_ISSUE_LABEL = "dependencies";
|
|
67
|
+
/** Title template; the version pair is appended so each update is its own issue. */
|
|
68
|
+
export const NAN_MCP_UPDATE_ISSUE_TITLE_PREFIX = "[auto] nan-mcp-server update available";
|
|
69
|
+
|
|
70
|
+
export interface NanMcpServerCheckReport {
|
|
71
|
+
/** npm package scanned. */
|
|
72
|
+
package: string;
|
|
73
|
+
/** Version pinned in this package's bridge (source of truth: nan-media.ts). */
|
|
74
|
+
pinnedVersion: string;
|
|
75
|
+
/** Latest version published on npm; null when the registry could not be read. */
|
|
76
|
+
latestVersion: string | null;
|
|
77
|
+
/** true when latestVersion is strictly newer than pinnedVersion. */
|
|
78
|
+
updateAvailable: boolean;
|
|
79
|
+
/** How the verdict was reached: registry in reach, no drift, or an error. */
|
|
80
|
+
status: "up-to-date" | "update-available" | "check-failed";
|
|
81
|
+
/** true when a bridged tool is missing from the latest server surface. */
|
|
82
|
+
breaking: boolean;
|
|
83
|
+
/** Tools added by the latest server that we do NOT bridge (informational). */
|
|
84
|
+
addedTools: string[];
|
|
85
|
+
/** Bridged tools dropped/renamed by the latest server (breaking → manual). */
|
|
86
|
+
removedTools: string[];
|
|
87
|
+
/** Upstream commit subjects between pinned and latest (when reachable). */
|
|
88
|
+
changelog: string[];
|
|
89
|
+
/** Human-readable verdict sentence. */
|
|
90
|
+
reason: string;
|
|
91
|
+
/** When the check could not reach a source (registry/unpkg/github). */
|
|
92
|
+
error?: string;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
/**
|
|
96
|
+
* Parse a semver-ish string (`1.0.8`, `v1.0.8`) into numeric major/minor/patch.
|
|
97
|
+
* Non-numeric release segments are clamped to 0 so `1.0.8` and `1.0.8-rc.1`
|
|
98
|
+
* compare sensibly; malformed input yields `[0, 0, 0]` (never throws).
|
|
99
|
+
*/
|
|
100
|
+
export function parseVersion(input: string): [number, number, number] {
|
|
101
|
+
const cleaned = String(input).trim().replace(/^v/, "").split(/[-+.]/);
|
|
102
|
+
const toNum = (segment: string | undefined) => {
|
|
103
|
+
const n = Number.parseInt(segment ?? "", 10);
|
|
104
|
+
return Number.isFinite(n) ? n : 0;
|
|
105
|
+
};
|
|
106
|
+
return [toNum(cleaned[0]), toNum(cleaned[1]), toNum(cleaned[2])];
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
/**
|
|
110
|
+
* Compare two version strings. Returns 1 when `a` is newer, -1 when older,
|
|
111
|
+
* 0 when equal. Comparable to a numeric semver compare for x.y.z inputs.
|
|
112
|
+
*/
|
|
113
|
+
export function compareVersions(a: string, b: string): number {
|
|
114
|
+
const [amaj, amin, apatch] = parseVersion(a);
|
|
115
|
+
const [bmaj, bmin, bpatch] = parseVersion(b);
|
|
116
|
+
if (amaj !== bmaj) return amaj > bmaj ? 1 : -1;
|
|
117
|
+
if (amin !== bmin) return amin > bmin ? 1 : -1;
|
|
118
|
+
if (apatch !== bpatch) return apatch > bpatch ? 1 : -1;
|
|
119
|
+
return 0;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
/** Extract every `registerTool("NAME")` from a server.js source string. */
|
|
123
|
+
export function extractServerTools(source: string): string[] {
|
|
124
|
+
const names = new Set<string>();
|
|
125
|
+
const re = /registerTool\(\s*["']([^"']+)["']/g;
|
|
126
|
+
let match: RegExpExecArray | null;
|
|
127
|
+
while ((match = re.exec(source)) !== null) {
|
|
128
|
+
names.add(match[1]!);
|
|
129
|
+
}
|
|
130
|
+
return [...names].sort();
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
/**
|
|
134
|
+
* Compare the latest server tool surface against the bridged tools and decide
|
|
135
|
+
* whether the update is safe to bump. The only hard break is a bridged tool
|
|
136
|
+
* disappearing (dropped or renamed); anything else — new tools, bug fixes,
|
|
137
|
+
* schema tightening (e.g. `edit_image` now rejects >4 images) — is safe for
|
|
138
|
+
* our bridge, because we forward the params the schema already documents.
|
|
139
|
+
*/
|
|
140
|
+
export function assessUpdate(latestTools: string[]): {
|
|
141
|
+
breaking: boolean;
|
|
142
|
+
addedTools: string[];
|
|
143
|
+
removedTools: string[];
|
|
144
|
+
reason: string;
|
|
145
|
+
} {
|
|
146
|
+
const bridged: readonly string[] = [...NAN_MEDIA_MCP_SERVER_TOOLS];
|
|
147
|
+
const latest = new Set(latestTools.map((t) => t.trim()));
|
|
148
|
+
|
|
149
|
+
const removedTools = bridged.filter((tool) => !latest.has(tool));
|
|
150
|
+
const addedTools = latestTools.filter((tool) => !bridged.includes(tool));
|
|
151
|
+
|
|
152
|
+
const breaking = removedTools.length > 0;
|
|
153
|
+
|
|
154
|
+
let reason: string;
|
|
155
|
+
if (breaking) {
|
|
156
|
+
reason =
|
|
157
|
+
`BREAKING: the latest nan-mcp-server no longer exposes ${removedTools.join(", ")}. ` +
|
|
158
|
+
"Bumping the pin would break the bridged tool(s) — manual review required before deciding.";
|
|
159
|
+
} else if (addedTools.length > 0) {
|
|
160
|
+
reason = `Safe to bump (non-breaking): every bridged tool is still present. New upstream tool(s) ${addedTools.join(", ")} are NOT bridged by this package (optional future work).`;
|
|
161
|
+
} else {
|
|
162
|
+
reason = "Safe to bump (non-breaking): every bridged tool is still present, and no new upstream tools were added.";
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
return { breaking, addedTools, removedTools, reason };
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
/**
|
|
169
|
+
* Build the full report from already-fetched data. Pure — no network. Missing
|
|
170
|
+
* or stale inputs degrade to `check-failed`, and an update is only reported
|
|
171
|
+
* when the latest version is strictly newer than the pinned one.
|
|
172
|
+
*/
|
|
173
|
+
export function buildReport(input: {
|
|
174
|
+
pinnedVersion: string;
|
|
175
|
+
latestVersion: string | null;
|
|
176
|
+
latestTools: string[];
|
|
177
|
+
changelog: string[];
|
|
178
|
+
error?: string;
|
|
179
|
+
}): NanMcpServerCheckReport {
|
|
180
|
+
const { pinnedVersion, latestVersion, latestTools, changelog, error } = input;
|
|
181
|
+
|
|
182
|
+
if (error) {
|
|
183
|
+
return {
|
|
184
|
+
package: NAN_MCP_SERVER_PACKAGE,
|
|
185
|
+
pinnedVersion,
|
|
186
|
+
latestVersion: null,
|
|
187
|
+
updateAvailable: false,
|
|
188
|
+
status: "check-failed",
|
|
189
|
+
breaking: false,
|
|
190
|
+
addedTools: [],
|
|
191
|
+
removedTools: [],
|
|
192
|
+
changelog: [],
|
|
193
|
+
reason: `Could not complete the check: ${error}`,
|
|
194
|
+
error,
|
|
195
|
+
};
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
if (latestVersion === null) {
|
|
199
|
+
return {
|
|
200
|
+
package: NAN_MCP_SERVER_PACKAGE,
|
|
201
|
+
pinnedVersion,
|
|
202
|
+
latestVersion: null,
|
|
203
|
+
updateAvailable: false,
|
|
204
|
+
status: "check-failed",
|
|
205
|
+
breaking: false,
|
|
206
|
+
addedTools: [],
|
|
207
|
+
removedTools: [],
|
|
208
|
+
changelog: [],
|
|
209
|
+
reason: "Could not read the npm registry for the latest version.",
|
|
210
|
+
error: "registry-unreachable",
|
|
211
|
+
};
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
const updateAvailable = compareVersions(latestVersion, pinnedVersion) > 0;
|
|
215
|
+
if (!updateAvailable) {
|
|
216
|
+
return {
|
|
217
|
+
package: NAN_MCP_SERVER_PACKAGE,
|
|
218
|
+
pinnedVersion,
|
|
219
|
+
latestVersion,
|
|
220
|
+
updateAvailable: false,
|
|
221
|
+
status: "up-to-date",
|
|
222
|
+
breaking: false,
|
|
223
|
+
addedTools: [],
|
|
224
|
+
removedTools: [],
|
|
225
|
+
changelog: [],
|
|
226
|
+
reason: `Up to date: pinned ${pinnedVersion} is not older than latest ${latestVersion}.`,
|
|
227
|
+
};
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
const verdict = assessUpdate(latestTools);
|
|
231
|
+
return {
|
|
232
|
+
package: NAN_MCP_SERVER_PACKAGE,
|
|
233
|
+
pinnedVersion,
|
|
234
|
+
latestVersion,
|
|
235
|
+
updateAvailable: true,
|
|
236
|
+
status: "update-available",
|
|
237
|
+
breaking: verdict.breaking,
|
|
238
|
+
addedTools: verdict.addedTools,
|
|
239
|
+
removedTools: verdict.removedTools,
|
|
240
|
+
changelog,
|
|
241
|
+
reason: verdict.reason,
|
|
242
|
+
};
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
/** A minimal fetch-compatible signature so tests can stub it without undici types. */
|
|
246
|
+
export type FetchLike = (url: string, init?: { headers?: Record<string, string> }) => Promise<Response>;
|
|
247
|
+
|
|
248
|
+
async function readJson<T>(url: string, fetchImpl: FetchLike, headers?: Record<string, string>): Promise<T> {
|
|
249
|
+
const res = await fetchImpl(url, { headers });
|
|
250
|
+
if (!res.ok) {
|
|
251
|
+
throw new Error(`HTTP ${res.status} from ${url}`);
|
|
252
|
+
}
|
|
253
|
+
return (await res.json()) as T;
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
/** Fetch the latest published version of the package from the npm registry. */
|
|
257
|
+
export async function fetchLatestVersion(fetchImpl: FetchLike = fetch): Promise<string> {
|
|
258
|
+
const data = await readJson<{ version?: string; "dist-tags"?: { latest?: string } }>(
|
|
259
|
+
NAN_MCP_SERVER_REGISTRY_URL,
|
|
260
|
+
fetchImpl,
|
|
261
|
+
);
|
|
262
|
+
const version = data["dist-tags"]?.latest ?? data.version;
|
|
263
|
+
if (!version) throw new Error("npm registry response had no version");
|
|
264
|
+
return version;
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
/** Fetch the published server.js source and extract its tool surface. */
|
|
268
|
+
export async function fetchServerTools(
|
|
269
|
+
version: string,
|
|
270
|
+
fetchImpl: FetchLike = fetch,
|
|
271
|
+
): Promise<string[]> {
|
|
272
|
+
const res = await fetchImpl(NAN_MCP_SERVER_SOURCE_URL(version));
|
|
273
|
+
if (!res.ok) throw new Error(`HTTP ${res.status} from ${NAN_MCP_SERVER_SOURCE_URL(version)}`);
|
|
274
|
+
return extractServerTools(await res.text());
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
/** Fetch upstream commit subjects between two tags (best-effort; empty on failure). */
|
|
278
|
+
export async function fetchChangelog(
|
|
279
|
+
from: string,
|
|
280
|
+
to: string,
|
|
281
|
+
fetchImpl: FetchLike = fetch,
|
|
282
|
+
): Promise<string[]> {
|
|
283
|
+
try {
|
|
284
|
+
const data = await readJson<{ commits?: Array<{ commit?: { message?: string } }> }>(
|
|
285
|
+
NAN_MCP_SERVER_COMPARE_URL(from, to),
|
|
286
|
+
fetchImpl,
|
|
287
|
+
);
|
|
288
|
+
return (data.commits ?? [])
|
|
289
|
+
.map((c) => c.commit?.message?.split("\n")[0]?.trim() ?? "")
|
|
290
|
+
.filter(Boolean);
|
|
291
|
+
} catch {
|
|
292
|
+
return [];
|
|
293
|
+
}
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
const ARGS = process.argv.slice(2);
|
|
297
|
+
/** Rendered issue body from a report — what a maintainer reads to decide. */
|
|
298
|
+
export function renderIssueBody(report: NanMcpServerCheckReport): string {
|
|
299
|
+
const lines: string[] = [];
|
|
300
|
+
lines.push(`**Package**: \`${report.package}\``);
|
|
301
|
+
lines.push(`**Pinned by this package**: \`${report.pinnedVersion}\``);
|
|
302
|
+
lines.push(`**Latest on npm**: \`${report.latestVersion ?? "unknown"}\``);
|
|
303
|
+
lines.push(`**Verdict**: ${report.breaking ? "⚠️ BREAKING — manual review required" : "✅ Safe to bump (non-breaking)"}`);
|
|
304
|
+
lines.push("");
|
|
305
|
+
lines.push(`> ${report.reason}`);
|
|
306
|
+
lines.push("");
|
|
307
|
+
if (report.changelog.length > 0) {
|
|
308
|
+
lines.push("### Upstream changes");
|
|
309
|
+
lines.push("", ...report.changelog.map((c) => `- ${c}`), "");
|
|
310
|
+
}
|
|
311
|
+
lines.push("### To bump");
|
|
312
|
+
lines.push(
|
|
313
|
+
`1. Edit \`DEFAULT_NAN_MEDIA_MCP_VERSION\` in \`src/mcp/nan-media.ts\` from \`${report.pinnedVersion}\` to \`${report.latestVersion}\`.`,
|
|
314
|
+
);
|
|
315
|
+
lines.push("2. Run \`bun test && bun run typecheck\`.");
|
|
316
|
+
lines.push(
|
|
317
|
+
report.breaking
|
|
318
|
+
? "3. Investigate the removed tool(s) — decide whether to bridge an alternative or keep the older pin."
|
|
319
|
+
: "3. Commit the bump and close this issue (it was auto-created).",
|
|
320
|
+
);
|
|
321
|
+
return lines.join("\n");
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
/** GitHub API root for this repository's issues. */
|
|
325
|
+
export const NAN_MCP_REPO_ISSUES_URL = "https://api.github.com/repos/gtrabanco/pi-nan-provider/issues";
|
|
326
|
+
|
|
327
|
+
async function sendIssueRequest<T>(
|
|
328
|
+
url: string,
|
|
329
|
+
method: string,
|
|
330
|
+
body: object | undefined,
|
|
331
|
+
token: string,
|
|
332
|
+
): Promise<T> {
|
|
333
|
+
const res = await fetch(url, {
|
|
334
|
+
method,
|
|
335
|
+
headers: {
|
|
336
|
+
Authorization: `Bearer ${token}`,
|
|
337
|
+
Accept: "application/vnd.github+json",
|
|
338
|
+
...(body ? { "Content-Type": "application/json" } : {}),
|
|
339
|
+
},
|
|
340
|
+
...(body ? { body: JSON.stringify(body) } : {}),
|
|
341
|
+
});
|
|
342
|
+
if (!res.ok) throw new Error(`GitHub API ${method} ${url} → HTTP ${res.status}`);
|
|
343
|
+
return (await res.json()) as T;
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
/**
|
|
347
|
+
* Create a pre-engineered update issue, or refresh an existing open one with
|
|
348
|
+
* the same title+label instead of stacking duplicates across cron runs.
|
|
349
|
+
* Returns the issue URL (web or API) so the caller can surface it.
|
|
350
|
+
*/
|
|
351
|
+
export async function createOrUpdateIssue(
|
|
352
|
+
report: NanMcpServerCheckReport,
|
|
353
|
+
token: string,
|
|
354
|
+
): Promise<string> {
|
|
355
|
+
const title = `${NAN_MCP_UPDATE_ISSUE_TITLE_PREFIX}: ${report.pinnedVersion} → ${report.latestVersion ?? "?"}`;
|
|
356
|
+
const body = renderIssueBody(report);
|
|
357
|
+
|
|
358
|
+
// Dedupe key: an OPEN issue whose title matches AND carries the label.
|
|
359
|
+
const searchUrl = `${GITHUB_SEARCH_ISSUES_URL}+${encodeURIComponent(`"${title}"`)}`;
|
|
360
|
+
const search = await sendIssueRequest<{ items?: Array<{ number: number; html_url: string }> }>(
|
|
361
|
+
searchUrl,
|
|
362
|
+
"GET",
|
|
363
|
+
undefined,
|
|
364
|
+
token,
|
|
365
|
+
);
|
|
366
|
+
const existing = search.items?.[0];
|
|
367
|
+
if (existing) {
|
|
368
|
+
const patchUrl = `${NAN_MCP_REPO_ISSUES_URL}/${existing.number}`;
|
|
369
|
+
await sendIssueRequest(patchUrl, "PATCH", { body }, token);
|
|
370
|
+
return existing.html_url;
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
const created = await sendIssueRequest<{ html_url: string }>(
|
|
374
|
+
NAN_MCP_REPO_ISSUES_URL,
|
|
375
|
+
"POST",
|
|
376
|
+
{ title, body, labels: [NAN_MCP_UPDATE_ISSUE_LABEL] },
|
|
377
|
+
token,
|
|
378
|
+
);
|
|
379
|
+
return created.html_url;
|
|
380
|
+
}
|
|
381
|
+
|
|
382
|
+
/** Main entry point. */
|
|
383
|
+
async function main(): Promise<void> {
|
|
384
|
+
let report: NanMcpServerCheckReport;
|
|
385
|
+
try {
|
|
386
|
+
const pinnedVersion = DEFAULT_NAN_MEDIA_MCP_VERSION;
|
|
387
|
+
const latestVersion = await fetchLatestVersion();
|
|
388
|
+
let latestTools: string[] = [];
|
|
389
|
+
let changelog: string[] = [];
|
|
390
|
+
if (compareVersions(latestVersion, pinnedVersion) > 0) {
|
|
391
|
+
latestTools = await fetchServerTools(latestVersion).catch(() => []);
|
|
392
|
+
changelog = await fetchChangelog(pinnedVersion, latestVersion);
|
|
393
|
+
}
|
|
394
|
+
report = buildReport({ pinnedVersion, latestVersion, latestTools, changelog });
|
|
395
|
+
} catch (error) {
|
|
396
|
+
report = buildReport({
|
|
397
|
+
pinnedVersion: DEFAULT_NAN_MEDIA_MCP_VERSION,
|
|
398
|
+
latestVersion: null,
|
|
399
|
+
latestTools: [],
|
|
400
|
+
changelog: [],
|
|
401
|
+
error: error instanceof Error ? error.message : String(error),
|
|
402
|
+
});
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
if (ARGS.includes("--json")) {
|
|
406
|
+
console.log(JSON.stringify(report, null, 2));
|
|
407
|
+
} else {
|
|
408
|
+
console.log(`nan-mcp-server: pinned ${report.pinnedVersion}, latest ${report.latestVersion ?? "unknown"}`);
|
|
409
|
+
console.log(` status: ${report.status} breaking: ${report.breaking}`);
|
|
410
|
+
console.log(` ${report.reason}`);
|
|
411
|
+
if (report.changelog.length > 0) {
|
|
412
|
+
console.log(" upstream:");
|
|
413
|
+
for (const c of report.changelog) console.log(` - ${c}`);
|
|
414
|
+
}
|
|
415
|
+
}
|
|
416
|
+
|
|
417
|
+
const token = process.env.GITHUB_TOKEN;
|
|
418
|
+
if (ARGS.includes("--issue") && report.status === "update-available" && token) {
|
|
419
|
+
const url = await createOrUpdateIssue(report, token);
|
|
420
|
+
console.log(` issue: ${url}`);
|
|
421
|
+
} else if (ARGS.includes("--issue") && report.status === "update-available" && !token) {
|
|
422
|
+
console.log(" --issue requested but GITHUB_TOKEN is not set; issue NOT created.");
|
|
423
|
+
}
|
|
424
|
+
}
|
|
425
|
+
|
|
426
|
+
await main();
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// This file is auto-generated by scripts/generate-models.ts
|
|
2
2
|
// Do not edit manually — run `bun run generate-models` to update.
|
|
3
3
|
//
|
|
4
|
-
// Source: https://models.dev/api.json (provider "nan"), fetched 2026-09-
|
|
4
|
+
// Source: https://models.dev/api.json (provider "nan"), fetched 2026-09-08T22:49:12.806Z
|
|
5
5
|
// Provenance: every contextWindow/maxTokens/input/cost value traces to
|
|
6
6
|
// models.dev or to the per-entry notes below. Nothing is invented; entries
|
|
7
7
|
// models.dev documents incompletely are omitted and flagged instead.
|
|
@@ -180,7 +180,7 @@ export const NAN_GENERATED_MODELS: readonly GeneratedModelEntry[] = [
|
|
|
180
180
|
"text"
|
|
181
181
|
]
|
|
182
182
|
},
|
|
183
|
-
"open_weights":
|
|
183
|
+
"open_weights": true,
|
|
184
184
|
"limit": {
|
|
185
185
|
"context": 1000000,
|
|
186
186
|
"output": 131072
|
|
@@ -375,7 +375,7 @@ export const NAN_GENERATED_MODELS: readonly GeneratedModelEntry[] = [
|
|
|
375
375
|
export const GENERATED_CATALOG_META = {
|
|
376
376
|
source: "https://models.dev/api.json",
|
|
377
377
|
modelsDevProvider: "nan",
|
|
378
|
-
fetchedAt: "2026-09-
|
|
378
|
+
fetchedAt: "2026-09-08T22:49:12.806Z",
|
|
379
379
|
modelCount: 6,
|
|
380
380
|
models: ["deepseek-v4-flash","gemma4","glm5.3-flash","mimo-v2.5","qwen3.6","qwen3.8-flash"],
|
|
381
381
|
notes: [
|
package/src/fetch-models.ts
CHANGED
|
@@ -12,12 +12,16 @@
|
|
|
12
12
|
* only model `id`s — no capability fields. It is used solely to confirm
|
|
13
13
|
* which model IDs are currently live.
|
|
14
14
|
*
|
|
15
|
-
* Merge: live IDs × generated capability data
|
|
16
|
-
*
|
|
17
|
-
*
|
|
18
|
-
*
|
|
19
|
-
*
|
|
20
|
-
*
|
|
15
|
+
* Merge: live IDs × generated capability data — an allowlist, not an open
|
|
16
|
+
* ingest. Only allowlisted IDs surface: a live ID with generated data keeps
|
|
17
|
+
* its generated capabilities, and an allowlisted uncatalogued ID (premium
|
|
18
|
+
* live-only) gets conservative placeholder limits (the same defaults used in
|
|
19
|
+
* custom-provider.md's dynamic-discovery example) with no reasoning support -
|
|
20
|
+
* capabilities stay "unknown", nothing is fabricated. Every other live ID is
|
|
21
|
+
* dropped so undocumented models (and any model NaN starts serving later)
|
|
22
|
+
* and non-chat endpoints never surface. On fetch failure, timeout, or an
|
|
23
|
+
* unusable response, callers fall back to the generated catalog so startup
|
|
24
|
+
* is never blocked.
|
|
21
25
|
*/
|
|
22
26
|
|
|
23
27
|
import type { Model, OpenAICompletionsCompat } from "@earendil-works/pi-ai";
|
|
@@ -60,6 +64,28 @@ export const NAN_COMPAT_API = "openai-completions" as const;
|
|
|
60
64
|
*/
|
|
61
65
|
export const UNKNOWN_MODEL_LIMITS = { contextWindow: 128_000, maxTokens: 4_096 } as const;
|
|
62
66
|
|
|
67
|
+
/**
|
|
68
|
+
* The allowlist of model ids this package may surface. Everything a live
|
|
69
|
+
* /models response returns that is NOT here is dropped — so models that are
|
|
70
|
+
* undocumented (and might become available later, e.g. one NaN starts
|
|
71
|
+
* serving after a release) can never leak through the package.
|
|
72
|
+
*
|
|
73
|
+
* Every current chat model is listed: the six models.dev-documented entries
|
|
74
|
+
* plus the premium live-only glm5.3 (which NaN serves via /models but that
|
|
75
|
+
* models.dev omits — see the "unemittable" note in scripts/generate-models.ts).
|
|
76
|
+
* Non-chat endpoints (flux-2-klein, kokoro, whisper, qwen3-embedding, rerank)
|
|
77
|
+
* are deliberately excluded: they are MCP-bridge territory, not chat models.
|
|
78
|
+
*/
|
|
79
|
+
const ALLOWED_MODEL_IDS = [
|
|
80
|
+
"deepseek-v4-flash",
|
|
81
|
+
"gemma4",
|
|
82
|
+
"glm5.3-flash",
|
|
83
|
+
"glm5.3",
|
|
84
|
+
"mimo-v2.5",
|
|
85
|
+
"qwen3.6",
|
|
86
|
+
"qwen3.8-flash",
|
|
87
|
+
] as const;
|
|
88
|
+
|
|
63
89
|
/** Timeout for the live /models fetch; matches the pi-synthetic-provider precedent (~3s). */
|
|
64
90
|
export const DEFAULT_MODELS_TIMEOUT_MS = 3_000;
|
|
65
91
|
|
|
@@ -87,9 +113,10 @@ export function toModel(entry: GeneratedModelEntry, source: CatalogSource): Mode
|
|
|
87
113
|
};
|
|
88
114
|
}
|
|
89
115
|
|
|
90
|
-
/** The generated fallback catalog as pi-ai Models for the given provider. */
|
|
116
|
+
/** The generated fallback catalog as pi-ai Models for the given provider (allowlisted entries only). */
|
|
91
117
|
export function baselineModels(source: CatalogSource): Model<"openai-completions">[] {
|
|
92
|
-
|
|
118
|
+
const allowed = new Set<string>(ALLOWED_MODEL_IDS);
|
|
119
|
+
return NAN_GENERATED_MODELS.filter((entry) => allowed.has(entry.id)).map((entry) => toModel(entry, source));
|
|
93
120
|
}
|
|
94
121
|
|
|
95
122
|
export interface LiveModelListOptions {
|
|
@@ -142,15 +169,17 @@ export interface MergedCatalog {
|
|
|
142
169
|
models: Model<"openai-completions">[];
|
|
143
170
|
/** Live IDs resolved against generated capability data. */
|
|
144
171
|
matched: string[];
|
|
145
|
-
/**
|
|
172
|
+
/** Allowlisted live IDs kept with unknown capabilities (conservative limits). */
|
|
146
173
|
unknown: string[];
|
|
147
174
|
}
|
|
148
175
|
|
|
149
176
|
/**
|
|
150
|
-
* Merge live model IDs with the generated capability catalog
|
|
151
|
-
*
|
|
152
|
-
*
|
|
153
|
-
*
|
|
177
|
+
* Merge live model IDs with the generated capability catalog, gated by the
|
|
178
|
+
* allowlist. Only allowlisted IDs surface: live IDs with generated data keep
|
|
179
|
+
* their generated capabilities; allowlisted uncatalogued IDs (glm5.3) get
|
|
180
|
+
* conservative placeholder limits, `reasoning: false`, and zero cost
|
|
181
|
+
* (documented defaults, not invented capabilities). Every non-allowlisted
|
|
182
|
+
* live ID is dropped.
|
|
154
183
|
*/
|
|
155
184
|
export function mergeLiveWithGenerated(
|
|
156
185
|
liveIds: readonly string[],
|
|
@@ -158,11 +187,13 @@ export function mergeLiveWithGenerated(
|
|
|
158
187
|
generated: readonly GeneratedModelEntry[] = NAN_GENERATED_MODELS,
|
|
159
188
|
): MergedCatalog {
|
|
160
189
|
const byId = new Map(generated.map((entry) => [entry.id, entry]));
|
|
190
|
+
const allowed = new Set<string>(ALLOWED_MODEL_IDS);
|
|
161
191
|
const models: Model<"openai-completions">[] = [];
|
|
162
192
|
const matched: string[] = [];
|
|
163
193
|
const unknown: string[] = [];
|
|
164
194
|
|
|
165
195
|
for (const id of liveIds) {
|
|
196
|
+
if (!allowed.has(id)) continue;
|
|
166
197
|
const entry = byId.get(id);
|
|
167
198
|
if (entry) {
|
|
168
199
|
models.push(toModel(entry, source));
|
|
@@ -205,7 +236,7 @@ export interface ResolvedCatalog {
|
|
|
205
236
|
* when the live fetch failed and the generated fallback was used.
|
|
206
237
|
*/
|
|
207
238
|
liveIds: Set<string> | undefined;
|
|
208
|
-
/**
|
|
239
|
+
/** Allowlisted live IDs kept with unknown capabilities (present only when liveIds is set). */
|
|
209
240
|
unknownIds: string[];
|
|
210
241
|
}
|
|
211
242
|
|
package/src/mcp/nan-media.ts
CHANGED
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
* other env vars inherit from your environment (generated files land in
|
|
15
15
|
* ~/nan-mcp-output/ by default).
|
|
16
16
|
* - Version pinning follows the upstream server's own supply-chain guidance:
|
|
17
|
-
* NAN_MEDIA_MCP_VERSION (default "1.0.
|
|
18
|
-
* NAN_MEDIA_MCP_COMMAND (space-separated, e.g. "bunx nan-mcp-server@1.0.
|
|
17
|
+
* NAN_MEDIA_MCP_VERSION (default "1.0.8"), or pass a custom command with
|
|
18
|
+
* NAN_MEDIA_MCP_COMMAND (space-separated, e.g. "bunx nan-mcp-server@1.0.8").
|
|
19
19
|
*/
|
|
20
20
|
|
|
21
21
|
import { Type, type TSchema } from "@earendil-works/pi-ai";
|
|
@@ -28,7 +28,21 @@ export const NAN_MEDIA_MCP_ENV = "NAN_MEDIA_MCP";
|
|
|
28
28
|
export const NAN_MEDIA_MCP_VERSION_ENV = "NAN_MEDIA_MCP_VERSION";
|
|
29
29
|
export const NAN_MEDIA_MCP_COMMAND_ENV = "NAN_MEDIA_MCP_COMMAND";
|
|
30
30
|
export const NAN_MEDIA_MCP_TIMEOUT_ENV = "NAN_MEDIA_MCP_TIMEOUT_MS";
|
|
31
|
-
export const DEFAULT_NAN_MEDIA_MCP_VERSION = "1.0.
|
|
31
|
+
export const DEFAULT_NAN_MEDIA_MCP_VERSION = "1.0.8";
|
|
32
|
+
|
|
33
|
+
/**
|
|
34
|
+
* The MCP tool names on the stdio nan-mcp-server that this package bridges as
|
|
35
|
+
* pi tools. Kept as the single source of truth for the check script
|
|
36
|
+
* (scripts/check-nan-mcp-server.ts) and to type each spec's `mcpTool` so the
|
|
37
|
+
* bridge cannot drift from the set it claims to expose.
|
|
38
|
+
*/
|
|
39
|
+
export const NAN_MEDIA_MCP_SERVER_TOOLS = [
|
|
40
|
+
"generate_image",
|
|
41
|
+
"edit_image",
|
|
42
|
+
"text_to_speech",
|
|
43
|
+
"list_voices",
|
|
44
|
+
"speech_to_text",
|
|
45
|
+
] as const;
|
|
32
46
|
export const DEFAULT_MEDIA_MCP_TIMEOUT_MS = 120_000;
|
|
33
47
|
|
|
34
48
|
/** Media tools bridged from the stdio MCP server (audio/image/transcription scope). */
|
|
@@ -84,7 +98,7 @@ function mediaMcpTimeoutMs(): number {
|
|
|
84
98
|
|
|
85
99
|
interface MediaToolSpec<TParams extends TSchema = TSchema> {
|
|
86
100
|
name: (typeof NAN_MEDIA_TOOLS)[number];
|
|
87
|
-
mcpTool:
|
|
101
|
+
mcpTool: (typeof NAN_MEDIA_MCP_SERVER_TOOLS)[number];
|
|
88
102
|
label: string;
|
|
89
103
|
description: string;
|
|
90
104
|
promptSnippet: string;
|
|
@@ -129,7 +143,7 @@ function defineMediaTool<TParams extends TSchema>(spec: MediaToolSpec<TParams>):
|
|
|
129
143
|
/**
|
|
130
144
|
* Build the media tool set. Registered only when NAN_MEDIA_MCP=1 and the
|
|
131
145
|
* runtime supports registerTool; execution spawns the MCP server per call.
|
|
132
|
-
* Schemas mirror nan-mcp-server's zod input schemas (v1.0.
|
|
146
|
+
* Schemas mirror nan-mcp-server's zod input schemas (v1.0.8).
|
|
133
147
|
*/
|
|
134
148
|
export function createNanMediaTools(): ToolDefinition[] {
|
|
135
149
|
return [
|
|
@@ -160,6 +174,8 @@ export function createNanMediaTools(): ToolDefinition[] {
|
|
|
160
174
|
prompt: Type.String({ description: "Description of the edit or transformation to apply" }),
|
|
161
175
|
images: Type.Array(Type.String(), {
|
|
162
176
|
description: "Absolute paths to reference image files (PNG, JPEG, WebP; up to 4, each < 25MB)",
|
|
177
|
+
minItems: 1,
|
|
178
|
+
maxItems: 4,
|
|
163
179
|
}),
|
|
164
180
|
size: sizeProperty(),
|
|
165
181
|
n: Type.Optional(Type.Integer({ description: "Number of images to generate (1-4). Default 1", minimum: 1, maximum: 4 })),
|
package/src/mcp/stdio-client.ts
CHANGED
|
@@ -18,7 +18,7 @@ const PROTOCOL_VERSION = "2024-11-05";
|
|
|
18
18
|
const CLIENT_INFO = { name: "pi-nan-provider", version: "0.2.0" };
|
|
19
19
|
|
|
20
20
|
export interface StdioMcpCallOptions {
|
|
21
|
-
/** Command to spawn, e.g. ["npx", "-y", "nan-mcp-server@1.0.
|
|
21
|
+
/** Command to spawn, e.g. ["npx", "-y", "nan-mcp-server@1.0.8"]. */
|
|
22
22
|
command: readonly string[];
|
|
23
23
|
/** Extra environment for the child (merged over process.env). */
|
|
24
24
|
env?: Record<string, string | undefined>;
|