@index9/mcp 6.5.4 → 6.5.6
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 +17 -13
- package/manifest.json +1 -1
- package/package.json +5 -4
- package/server.json +2 -2
package/dist/cli.js
CHANGED
|
@@ -262,7 +262,8 @@ var SITE = {
|
|
|
262
262
|
installCta: "Install"
|
|
263
263
|
},
|
|
264
264
|
hero: {
|
|
265
|
-
title: "
|
|
265
|
+
title: "Live model catalog for coding assistants",
|
|
266
|
+
titleLines: ["Live model catalog", "for coding assistants"],
|
|
266
267
|
subtitle: "MCP tools for Claude Code, Cursor, VS Code, and Codex to search, compare, cost-model, and live-test 300+ models.",
|
|
267
268
|
pricingNote: "Free to install. Live tests use your OpenRouter key.",
|
|
268
269
|
seeHowItWorks: "See a real session",
|
|
@@ -277,11 +278,11 @@ var SITE = {
|
|
|
277
278
|
},
|
|
278
279
|
problem: {
|
|
279
280
|
label: "Why this exists",
|
|
280
|
-
heading: "Your assistant
|
|
281
|
+
heading: "Your assistant has no live model catalog",
|
|
281
282
|
body: [
|
|
282
|
-
"New models ship
|
|
283
|
-
"Without
|
|
284
|
-
|
|
283
|
+
"New models ship weekly. Pricing and capabilities change.",
|
|
284
|
+
"Without a catalog to query, your assistant falls back to training-time memory and web snippets. Pricing, limits, and model IDs in the answer can be wrong.",
|
|
285
|
+
`Index9 caches ${MODEL_COUNT} models, refreshes every 30 minutes, and exposes them as five MCP tools in your editor.`
|
|
285
286
|
]
|
|
286
287
|
},
|
|
287
288
|
howItWorks: {
|
|
@@ -292,7 +293,7 @@ var SITE = {
|
|
|
292
293
|
{
|
|
293
294
|
number: "1",
|
|
294
295
|
title: "You ask in chat",
|
|
295
|
-
body: '"Pick the
|
|
296
|
+
body: '"Pick a model for the support agent in our backend: real quality on 4k-token threads at ~30k calls a day, without frontier per-token rates."'
|
|
296
297
|
},
|
|
297
298
|
{
|
|
298
299
|
number: "2",
|
|
@@ -308,9 +309,10 @@ var SITE = {
|
|
|
308
309
|
},
|
|
309
310
|
caseStudy: {
|
|
310
311
|
label: "Real session",
|
|
311
|
-
heading: "
|
|
312
|
-
subheading: "
|
|
313
|
-
|
|
312
|
+
heading: "Live trace, not a mockup",
|
|
313
|
+
subheading: "Support-agent model pick: full tool trace and measured verdict.",
|
|
314
|
+
sessionTitle: "Session",
|
|
315
|
+
promptTitle: "The ask",
|
|
314
316
|
toolCallsTitle: "What the assistant did",
|
|
315
317
|
consideredTitle: "Candidates evaluated",
|
|
316
318
|
verdictTitle: "The pick",
|
|
@@ -388,7 +390,7 @@ var SITE = {
|
|
|
388
390
|
},
|
|
389
391
|
{
|
|
390
392
|
question: "Who is index9 for?",
|
|
391
|
-
answer: "Developers in Claude Code, Cursor, VS Code, or Codex who want model picks from live data, not training memory.",
|
|
393
|
+
answer: "Developers in Claude Code, Cursor, VS Code, or Codex who want model picks from live data, not training-time memory.",
|
|
392
394
|
link: null
|
|
393
395
|
},
|
|
394
396
|
{
|
|
@@ -489,7 +491,7 @@ var SITE = {
|
|
|
489
491
|
},
|
|
490
492
|
footer: {
|
|
491
493
|
brand: "index9",
|
|
492
|
-
tagline: "Live model
|
|
494
|
+
tagline: "Live model catalog, via MCP.",
|
|
493
495
|
copyrightSuffix: "index9",
|
|
494
496
|
github: "GitHub",
|
|
495
497
|
privacy: "Privacy",
|
|
@@ -706,7 +708,7 @@ var ListFacetsToolResultSchema = FacetsResponseSchema.extend({
|
|
|
706
708
|
|
|
707
709
|
// ../core/dist/schemas/case-study.js
|
|
708
710
|
import { z as z6 } from "zod";
|
|
709
|
-
var CaseStudyDecisionSchema = z6.enum(["shortlisted", "tested"]);
|
|
711
|
+
var CaseStudyDecisionSchema = z6.enum(["shortlisted", "tested", "selected"]);
|
|
710
712
|
var CaseStudyToolCallSchema = z6.object({
|
|
711
713
|
tool: z6.string(),
|
|
712
714
|
params: z6.string()
|
|
@@ -723,13 +725,15 @@ var CaseStudyVerdictSchema = z6.object({
|
|
|
723
725
|
model: z6.string().nullable(),
|
|
724
726
|
body: z6.string()
|
|
725
727
|
}).strict();
|
|
728
|
+
var displayPromptBody = z6.string().max(220).refine((s) => !s.includes("\n"), "promptBody must be a single line").refine((s) => !/walk me through/i.test(s), "promptBody must not include eval harness steps").refine((s) => !/##\s*recommendation/i.test(s), "promptBody must not include extraction template");
|
|
726
729
|
var CaseStudySchema = z6.object({
|
|
727
730
|
capturedAt: z6.string(),
|
|
728
731
|
generatedAt: z6.string(),
|
|
729
732
|
sourceRun: z6.string(),
|
|
730
733
|
evaluatorModelId: z6.string(),
|
|
731
734
|
promptId: z6.string(),
|
|
732
|
-
promptBody:
|
|
735
|
+
promptBody: displayPromptBody,
|
|
736
|
+
promptContext: z6.string().max(80).optional(),
|
|
733
737
|
totalLatencyMs: z6.number().int(),
|
|
734
738
|
totalCostUsd: z6.number().nullable(),
|
|
735
739
|
toolCallCount: z6.number().int(),
|
package/manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@index9/mcp",
|
|
3
|
-
"version": "6.5.
|
|
3
|
+
"version": "6.5.6",
|
|
4
4
|
"description": "Discover, shortlist, compare, cost-model, and live-test 300+ AI models from your editor",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
|
-
"url": "git+https://github.com/index9
|
|
8
|
+
"url": "git+https://github.com/johnwils/index9.git",
|
|
9
|
+
"directory": "packages/mcp"
|
|
9
10
|
},
|
|
10
11
|
"bin": {
|
|
11
12
|
"index9-mcp": "./dist/cli.js"
|
|
@@ -26,10 +27,10 @@
|
|
|
26
27
|
"zod": "^4.4.3"
|
|
27
28
|
},
|
|
28
29
|
"devDependencies": {
|
|
29
|
-
"@types/node": "^25.
|
|
30
|
+
"@types/node": "^25.9.1",
|
|
30
31
|
"tsup": "^8.5.1",
|
|
31
32
|
"typescript": "6.0.3",
|
|
32
|
-
"vitest": "^4.1.
|
|
33
|
+
"vitest": "^4.1.7",
|
|
33
34
|
"@index9/core": "2.8.0"
|
|
34
35
|
},
|
|
35
36
|
"engines": {
|
package/server.json
CHANGED
|
@@ -7,13 +7,13 @@
|
|
|
7
7
|
"url": "https://github.com/index9-org/mcp",
|
|
8
8
|
"source": "github"
|
|
9
9
|
},
|
|
10
|
-
"version": "6.5.
|
|
10
|
+
"version": "6.5.6",
|
|
11
11
|
"packages": [
|
|
12
12
|
{
|
|
13
13
|
"registryType": "npm",
|
|
14
14
|
"registryBaseUrl": "https://registry.npmjs.org",
|
|
15
15
|
"identifier": "@index9/mcp",
|
|
16
|
-
"version": "6.5.
|
|
16
|
+
"version": "6.5.6",
|
|
17
17
|
"transport": {
|
|
18
18
|
"type": "stdio"
|
|
19
19
|
},
|