@vibecheck-ai/mcp 26.0.2 → 26.0.3
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/LICENSE +21 -0
- package/dist/index.js +9 -9
- package/package.json +13 -15
- /package/dist/{analytics-RKAYZLK7.js → analytics-2S6MPAA7.js} +0 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 VibeCheck
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/dist/index.js
CHANGED
|
@@ -26794,7 +26794,7 @@ function createScanIdempotencyKey(prefix) {
|
|
|
26794
26794
|
// src/mcp-scan-meter-client.ts
|
|
26795
26795
|
var MCP_SCAN_METER_CLIENT = {
|
|
26796
26796
|
type: "mcp",
|
|
26797
|
-
version: "26.0.
|
|
26797
|
+
version: "26.0.3"
|
|
26798
26798
|
};
|
|
26799
26799
|
|
|
26800
26800
|
// ../shared/dist/chunk-YYSV5CG4.js
|
|
@@ -27528,23 +27528,23 @@ async function handleCallToolRequest(request, runtimeOverrides = {}) {
|
|
|
27528
27528
|
const toolStartMs = Date.now();
|
|
27529
27529
|
try {
|
|
27530
27530
|
const { isMcpBelowMinimum } = await import('./version-gate-DWV5M7WC.js');
|
|
27531
|
-
const gate = await isMcpBelowMinimum("26.0.
|
|
27531
|
+
const gate = await isMcpBelowMinimum("26.0.3");
|
|
27532
27532
|
if (gate.belowMin) {
|
|
27533
27533
|
return buildErrorResponse(
|
|
27534
|
-
`VibeCheck MCP ${"26.0.
|
|
27534
|
+
`VibeCheck MCP ${"26.0.3"} is below the minimum supported version (${gate.minVersion}). Upgrade with: npm install -g @vibecheck-ai/mcp@latest`
|
|
27535
27535
|
);
|
|
27536
27536
|
}
|
|
27537
27537
|
} catch {
|
|
27538
27538
|
}
|
|
27539
27539
|
try {
|
|
27540
|
-
const { trackToolCall } = await import('./analytics-
|
|
27540
|
+
const { trackToolCall } = await import('./analytics-2S6MPAA7.js');
|
|
27541
27541
|
trackToolCall(name);
|
|
27542
27542
|
} catch {
|
|
27543
27543
|
}
|
|
27544
27544
|
if (!isKnownToolName(name)) {
|
|
27545
27545
|
void (async () => {
|
|
27546
27546
|
try {
|
|
27547
|
-
const { trackToolResult } = await import('./analytics-
|
|
27547
|
+
const { trackToolResult } = await import('./analytics-2S6MPAA7.js');
|
|
27548
27548
|
trackToolResult(name, false, Date.now() - toolStartMs, { reason: "unknown_tool" });
|
|
27549
27549
|
} catch {
|
|
27550
27550
|
}
|
|
@@ -28469,7 +28469,7 @@ function createMcpServer(runtimeOverrides = {}) {
|
|
|
28469
28469
|
const server = new Server(
|
|
28470
28470
|
{
|
|
28471
28471
|
name: "vibecheck-mcp",
|
|
28472
|
-
version: "26.0.
|
|
28472
|
+
version: "26.0.3"
|
|
28473
28473
|
},
|
|
28474
28474
|
{
|
|
28475
28475
|
capabilities: {
|
|
@@ -28486,8 +28486,8 @@ function createMcpServer(runtimeOverrides = {}) {
|
|
|
28486
28486
|
}
|
|
28487
28487
|
async function startStdioServer(runtimeOverrides = {}) {
|
|
28488
28488
|
try {
|
|
28489
|
-
const { initAnalytics } = await import('./analytics-
|
|
28490
|
-
await initAnalytics("26.0.
|
|
28489
|
+
const { initAnalytics } = await import('./analytics-2S6MPAA7.js');
|
|
28490
|
+
await initAnalytics("26.0.3");
|
|
28491
28491
|
} catch {
|
|
28492
28492
|
}
|
|
28493
28493
|
const server = createMcpServer(runtimeOverrides);
|
|
@@ -28495,7 +28495,7 @@ async function startStdioServer(runtimeOverrides = {}) {
|
|
|
28495
28495
|
await server.connect(transport);
|
|
28496
28496
|
const flush = async () => {
|
|
28497
28497
|
try {
|
|
28498
|
-
const { shutdownAnalytics } = await import('./analytics-
|
|
28498
|
+
const { shutdownAnalytics } = await import('./analytics-2S6MPAA7.js');
|
|
28499
28499
|
await shutdownAnalytics();
|
|
28500
28500
|
} catch {
|
|
28501
28501
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vibecheck-ai/mcp",
|
|
3
|
-
"version": "26.0.
|
|
3
|
+
"version": "26.0.3",
|
|
4
4
|
"description": "VibeCheck MCP — the code intelligence layer for AI-built software, wired into your agent. Truth-grounded, runtime-aware, multi-agent. 16+ verification engines, runtime probes, and live truthpack context for Cursor, Claude, Windsurf, and any MCP-compatible client.",
|
|
5
5
|
"mcpName": "io.github.guardiavault-oss/vibecheck-mcp",
|
|
6
6
|
"type": "module",
|
|
@@ -46,19 +46,6 @@
|
|
|
46
46
|
"bin": {
|
|
47
47
|
"vibecheck-mcp": "./dist/index.js"
|
|
48
48
|
},
|
|
49
|
-
"scripts": {
|
|
50
|
-
"build": "tsup",
|
|
51
|
-
"compile": "tsc -p . --noEmit",
|
|
52
|
-
"typecheck": "tsc -p . --noEmit",
|
|
53
|
-
"test": "vitest run",
|
|
54
|
-
"lint": "eslint src/ --max-warnings 0",
|
|
55
|
-
"lint:fix": "eslint src/ --fix --max-warnings 0",
|
|
56
|
-
"test:watch": "vitest",
|
|
57
|
-
"verify-dist": "node scripts/verify-dist.mjs",
|
|
58
|
-
"release:check": "pnpm run build && pnpm run test && pnpm run verify-dist",
|
|
59
|
-
"prepublishOnly": "pnpm run release:check && node scripts/prepublish.cjs",
|
|
60
|
-
"postpublish": "node scripts/postpublish.cjs"
|
|
61
|
-
},
|
|
62
49
|
"dependencies": {
|
|
63
50
|
"@isl-lang/pipeline": "^1.0.0",
|
|
64
51
|
"@modelcontextprotocol/sdk": "^1.0.0",
|
|
@@ -81,5 +68,16 @@
|
|
|
81
68
|
"tsup": "^8.0.0",
|
|
82
69
|
"typescript": "^5.8.0",
|
|
83
70
|
"vitest": "^2.1.8"
|
|
71
|
+
},
|
|
72
|
+
"scripts": {
|
|
73
|
+
"build": "tsup",
|
|
74
|
+
"compile": "tsc -p . --noEmit",
|
|
75
|
+
"typecheck": "tsc -p . --noEmit",
|
|
76
|
+
"test": "vitest run",
|
|
77
|
+
"lint": "eslint src/ --max-warnings 0",
|
|
78
|
+
"lint:fix": "eslint src/ --fix --max-warnings 0",
|
|
79
|
+
"test:watch": "vitest",
|
|
80
|
+
"verify-dist": "node scripts/verify-dist.mjs",
|
|
81
|
+
"release:check": "pnpm run build && pnpm run test && pnpm run verify-dist"
|
|
84
82
|
}
|
|
85
|
-
}
|
|
83
|
+
}
|
|
File without changes
|