@vibecheck-ai/mcp 24.6.12 → 25.0.0

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.
Files changed (3) hide show
  1. package/dist/index.js +2 -2
  2. package/package.json +16 -14
  3. package/LICENSE +0 -21
package/dist/index.js CHANGED
@@ -26651,7 +26651,7 @@ function createScanIdempotencyKey(prefix) {
26651
26651
  // src/mcp-scan-meter-client.ts
26652
26652
  var MCP_SCAN_METER_CLIENT = {
26653
26653
  type: "mcp",
26654
- version: "24.6.12"
26654
+ version: "25.0.0"
26655
26655
  };
26656
26656
 
26657
26657
  // ../shared/dist/chunk-YYSV5CG4.js
@@ -28208,7 +28208,7 @@ function createMcpServer(runtimeOverrides = {}) {
28208
28208
  const server = new Server(
28209
28209
  {
28210
28210
  name: "vibecheck-mcp",
28211
- version: "24.6.12"
28211
+ version: "25.0.0"
28212
28212
  },
28213
28213
  {
28214
28214
  capabilities: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vibecheck-ai/mcp",
3
- "version": "24.6.12",
3
+ "version": "25.0.0",
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,12 +46,25 @@
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
+ },
49
62
  "dependencies": {
50
63
  "@modelcontextprotocol/sdk": "^1.0.0",
51
64
  "@repo/shared": "^0.1.0",
52
65
  "@repo/shared-types": "^1.1.0",
53
66
  "@repo/subscriptions": "^1.0.0",
54
- "@vibecheck-ai/cli": "^25.0.10",
67
+ "@vibecheck-ai/cli": "^26.0.0",
55
68
  "@vibecheck/engines": "^2.0.0-beta.1",
56
69
  "@vibecheck/roast": "^1.0.0",
57
70
  "@vibecheck/x402-gate": "^0.1.0",
@@ -66,16 +79,5 @@
66
79
  "tsup": "^8.0.0",
67
80
  "typescript": "^5.8.0",
68
81
  "vitest": "^2.1.8"
69
- },
70
- "scripts": {
71
- "build": "tsup",
72
- "compile": "tsc -p . --noEmit",
73
- "typecheck": "tsc -p . --noEmit",
74
- "test": "vitest run",
75
- "lint": "eslint src/ --max-warnings 0",
76
- "lint:fix": "eslint src/ --fix --max-warnings 0",
77
- "test:watch": "vitest",
78
- "verify-dist": "node scripts/verify-dist.mjs",
79
- "release:check": "pnpm run build && pnpm run test && pnpm run verify-dist"
80
82
  }
81
- }
83
+ }
package/LICENSE DELETED
@@ -1,21 +0,0 @@
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.