@index9/mcp 6.5.4 → 6.5.5
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 +15 -12
- package/manifest.json +1 -1
- package/package.json +1 -1
- 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
|
-
"
|
|
284
|
-
|
|
283
|
+
"New models ship weekly. Pricing, aliases, and capabilities change with them.",
|
|
284
|
+
"With no catalog to query, it uses training-time memory or web snippets. Pricing, context limits, and model ids in the answer may be wrong.",
|
|
285
|
+
`Index9 caches ${MODEL_COUNT} models, refreshes every 30 minutes, and exposes the catalog 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",
|
|
@@ -309,8 +310,8 @@ var SITE = {
|
|
|
309
310
|
caseStudy: {
|
|
310
311
|
label: "Real session",
|
|
311
312
|
heading: "A real session, not a mockup",
|
|
312
|
-
subheading: "
|
|
313
|
-
promptTitle: "The
|
|
313
|
+
subheading: "Picking a model for a customer-support agent: live tool trace and measured verdict.",
|
|
314
|
+
promptTitle: "The ask",
|
|
314
315
|
toolCallsTitle: "What the assistant did",
|
|
315
316
|
consideredTitle: "Candidates evaluated",
|
|
316
317
|
verdictTitle: "The pick",
|
|
@@ -388,7 +389,7 @@ var SITE = {
|
|
|
388
389
|
},
|
|
389
390
|
{
|
|
390
391
|
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.",
|
|
392
|
+
answer: "Developers in Claude Code, Cursor, VS Code, or Codex who want model picks from live data, not training-time memory.",
|
|
392
393
|
link: null
|
|
393
394
|
},
|
|
394
395
|
{
|
|
@@ -489,7 +490,7 @@ var SITE = {
|
|
|
489
490
|
},
|
|
490
491
|
footer: {
|
|
491
492
|
brand: "index9",
|
|
492
|
-
tagline: "Live model
|
|
493
|
+
tagline: "Live model catalog, via MCP.",
|
|
493
494
|
copyrightSuffix: "index9",
|
|
494
495
|
github: "GitHub",
|
|
495
496
|
privacy: "Privacy",
|
|
@@ -706,7 +707,7 @@ var ListFacetsToolResultSchema = FacetsResponseSchema.extend({
|
|
|
706
707
|
|
|
707
708
|
// ../core/dist/schemas/case-study.js
|
|
708
709
|
import { z as z6 } from "zod";
|
|
709
|
-
var CaseStudyDecisionSchema = z6.enum(["shortlisted", "tested"]);
|
|
710
|
+
var CaseStudyDecisionSchema = z6.enum(["shortlisted", "tested", "selected"]);
|
|
710
711
|
var CaseStudyToolCallSchema = z6.object({
|
|
711
712
|
tool: z6.string(),
|
|
712
713
|
params: z6.string()
|
|
@@ -723,13 +724,15 @@ var CaseStudyVerdictSchema = z6.object({
|
|
|
723
724
|
model: z6.string().nullable(),
|
|
724
725
|
body: z6.string()
|
|
725
726
|
}).strict();
|
|
727
|
+
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
728
|
var CaseStudySchema = z6.object({
|
|
727
729
|
capturedAt: z6.string(),
|
|
728
730
|
generatedAt: z6.string(),
|
|
729
731
|
sourceRun: z6.string(),
|
|
730
732
|
evaluatorModelId: z6.string(),
|
|
731
733
|
promptId: z6.string(),
|
|
732
|
-
promptBody:
|
|
734
|
+
promptBody: displayPromptBody,
|
|
735
|
+
promptContext: z6.string().max(80).optional(),
|
|
733
736
|
totalLatencyMs: z6.number().int(),
|
|
734
737
|
totalCostUsd: z6.number().nullable(),
|
|
735
738
|
toolCallCount: z6.number().int(),
|
package/manifest.json
CHANGED
package/package.json
CHANGED
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.5",
|
|
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.5",
|
|
17
17
|
"transport": {
|
|
18
18
|
"type": "stdio"
|
|
19
19
|
},
|