@index9/mcp 4.0.0 → 4.0.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/dist/cli.js +8 -29
- package/package.json +7 -7
package/dist/cli.js
CHANGED
|
@@ -159,7 +159,6 @@ var PARAM_DESCRIPTIONS = {
|
|
|
159
159
|
var SITE = {
|
|
160
160
|
nav: {
|
|
161
161
|
brand: "index9",
|
|
162
|
-
howItWorks: "How it works",
|
|
163
162
|
install: "Install",
|
|
164
163
|
faq: "FAQ",
|
|
165
164
|
github: "GitHub",
|
|
@@ -206,27 +205,6 @@ var SITE = {
|
|
|
206
205
|
}
|
|
207
206
|
]
|
|
208
207
|
},
|
|
209
|
-
howItWorks: {
|
|
210
|
-
label: "Workflow",
|
|
211
|
-
heading: "How it works",
|
|
212
|
-
steps: [
|
|
213
|
-
{
|
|
214
|
-
number: "01",
|
|
215
|
-
title: "Analyze",
|
|
216
|
-
description: "Describe what you need. Your assistant finds models matching your cost, speed, and capability requirements."
|
|
217
|
-
},
|
|
218
|
-
{
|
|
219
|
-
number: "02",
|
|
220
|
-
title: "Test",
|
|
221
|
-
description: "Run your prompt across the top candidates. See each output with latency and cost."
|
|
222
|
-
},
|
|
223
|
-
{
|
|
224
|
-
number: "03",
|
|
225
|
-
title: "Compare",
|
|
226
|
-
description: "Pick the best model for your task \u2014 based on real results, not generic rankings."
|
|
227
|
-
}
|
|
228
|
-
]
|
|
229
|
-
},
|
|
230
208
|
faq: {
|
|
231
209
|
label: "FAQ",
|
|
232
210
|
heading: "Common questions",
|
|
@@ -313,13 +291,13 @@ var SITE = {
|
|
|
313
291
|
withoutLabel: "Without index9",
|
|
314
292
|
withLabel: "With index9",
|
|
315
293
|
withoutItems: [
|
|
316
|
-
"
|
|
317
|
-
"Quality
|
|
318
|
-
"Testing a model means a throwaway script or manual
|
|
294
|
+
"Model pricing and specs may be weeks old",
|
|
295
|
+
"Quality based on generic benchmarks, not your task",
|
|
296
|
+
"Testing a model means a throwaway script or manual switching"
|
|
319
297
|
],
|
|
320
298
|
withItems: [
|
|
321
|
-
"
|
|
322
|
-
"Quality measured on
|
|
299
|
+
"Models synced from OpenRouter every 30 minutes",
|
|
300
|
+
"Quality measured on prompts for your specific task",
|
|
323
301
|
"Test and compare in your editor \u2014 no scripts, no switching"
|
|
324
302
|
],
|
|
325
303
|
sampleTableLabel: 'Sample comparison \u2014 "Extract the action items from this meeting transcript"',
|
|
@@ -356,7 +334,8 @@ var SITE = {
|
|
|
356
334
|
},
|
|
357
335
|
footer: {
|
|
358
336
|
brand: "index9",
|
|
359
|
-
|
|
337
|
+
tagline1: "Model data synced from OpenRouter",
|
|
338
|
+
tagline2: "Search, testing, and MCP tools by index9",
|
|
360
339
|
copyright: "\xA9 2026 index9",
|
|
361
340
|
github: "GitHub",
|
|
362
341
|
privacy: "Privacy",
|
|
@@ -370,7 +349,7 @@ var SITE = {
|
|
|
370
349
|
userPrompt: "Find the cheapest, most capable model for my use case.",
|
|
371
350
|
assistantReplyPrefix: "I'll check your ",
|
|
372
351
|
assistantReplyFile: "summarize-ticket.ts",
|
|
373
|
-
assistantReplySuffix: " handler, search for suitable models,
|
|
352
|
+
assistantReplySuffix: " handler, search for suitable models, then test the top 3.",
|
|
374
353
|
findModelsCall: {
|
|
375
354
|
label: "find_models",
|
|
376
355
|
suffix: " \u2014 search by use case",
|
package/package.json
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@index9/mcp",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.1",
|
|
4
|
+
"license": "MIT",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "git+https://github.com/index9-org/mcp.git"
|
|
8
|
+
},
|
|
4
9
|
"bin": {
|
|
5
10
|
"index9-mcp": "./dist/cli.js"
|
|
6
11
|
},
|
|
@@ -14,11 +19,6 @@
|
|
|
14
19
|
"publishConfig": {
|
|
15
20
|
"access": "public"
|
|
16
21
|
},
|
|
17
|
-
"repository": {
|
|
18
|
-
"type": "git",
|
|
19
|
-
"url": "git+https://github.com/index9-org/mcp.git"
|
|
20
|
-
},
|
|
21
|
-
"license": "MIT",
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@modelcontextprotocol/sdk": "^1.26.0",
|
|
24
24
|
"zod": "^4.3.6"
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"@types/node": "^25.2.3",
|
|
28
28
|
"tsup": "^8.5.1",
|
|
29
29
|
"typescript": "5.9.3",
|
|
30
|
-
"@index9/core": "2.3.
|
|
30
|
+
"@index9/core": "2.3.1"
|
|
31
31
|
},
|
|
32
32
|
"engines": {
|
|
33
33
|
"node": ">=20"
|