@vibecheck-ai/mcp 23.0.0 → 23.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.
Files changed (3) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +1 -4
  3. package/package.json +15 -21
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/README.md CHANGED
@@ -20,9 +20,8 @@ The Model Context Protocol server that lets Cursor, Claude, Windsurf, and any MC
20
20
 
21
21
  <br />
22
22
 
23
- <!-- TODO: Replace with actual GIF showing MCP in Cursor/Claude -->
24
23
  <p align="center">
25
- <img src="https://github.com/guardiavault-oss/Vibecheck/raw/HEAD/docs/assets/mcp-cursor-demo.gif" alt="VibeCheck MCP Server running inside Cursor" width="820" />
24
+ <img src="https://github.com/guardiavault-oss/Vibecheck/raw/HEAD/docs/assets/cli-scan-demo.gif" alt="VibeCheck MCP Server running inside Cursor" width="820" />
26
25
  </p>
27
26
 
28
27
  <br />
@@ -124,7 +123,6 @@ The server communicates over **stdio** using the MCP protocol. No HTTP. No ports
124
123
 
125
124
  <br />
126
125
 
127
- <!-- TODO: Replace with actual screenshot of MCP config in Cursor -->
128
126
  <p align="center">
129
127
  <img src="https://github.com/guardiavault-oss/Vibecheck/raw/HEAD/docs/assets/mcp-setup.png" alt="MCP server configuration in Cursor" width="720" />
130
128
  </p>
@@ -193,7 +191,6 @@ The agent calls `vibecheck_roast` for an opinionated, brutally honest assessment
193
191
 
194
192
  <br />
195
193
 
196
- <!-- TODO: Replace with actual screenshot of agent using vibecheck_scan -->
197
194
  <p align="center">
198
195
  <img src="https://github.com/guardiavault-oss/Vibecheck/raw/HEAD/docs/assets/mcp-agent-scan.png" alt="AI agent using vibecheck_scan tool" width="720" />
199
196
  </p>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vibecheck-ai/mcp",
3
- "version": "23.0.0",
3
+ "version": "23.0.1",
4
4
  "description": "The trust layer for AI-generated software. Catches phantom dependencies, ghost API routes, fake SDK methods, and hardcoded secrets — before they ship.",
5
5
  "mcpName": "io.github.guardiavault-oss/vibecheck-mcp",
6
6
  "type": "module",
@@ -28,35 +28,29 @@
28
28
  "bugs": {
29
29
  "url": "https://github.com/vibecheck-oss/vibecheck/issues"
30
30
  },
31
- "files": ["dist/index.js"],
31
+ "files": [
32
+ "dist/index.js"
33
+ ],
32
34
  "bin": {
33
35
  "vibecheck-mcp": "./dist/index.js"
34
36
  },
35
- "scripts": {
36
- "build": "tsup",
37
- "compile": "tsc -p . --noEmit",
38
- "test": "vitest run",
39
- "test:watch": "vitest",
40
- "verify-dist": "node scripts/verify-dist.mjs",
41
- "release:check": "pnpm run build && pnpm run test && pnpm run verify-dist",
42
- "prepublishOnly": "pnpm run release:check && node scripts/prepublish.cjs",
43
- "postpublish": "node scripts/postpublish.cjs"
44
- },
45
37
  "dependencies": {
46
38
  "@modelcontextprotocol/sdk": "^1.0.0",
47
- "@repo/shared-types": "workspace:*",
48
- "@vibecheck-ai/cli": "workspace:*"
39
+ "@repo/shared-types": "^1.1.0",
40
+ "@vibecheck-ai/cli": "^23.0.1"
49
41
  },
50
42
  "devDependencies": {
51
- "@repo/context-engine": "workspace:*",
52
- "@repo/context-evolution": "workspace:*",
53
- "@repo/subscriptions": "workspace:*",
54
43
  "@types/node": "^20.0.0",
55
- "@vibecheck/codegraph": "workspace:*",
56
- "@vibecheck/core": "workspace:*",
57
- "@vibecheck/engines": "workspace:*",
58
44
  "tsup": "^8.0.0",
59
45
  "typescript": "^5.8.0",
60
46
  "vitest": "^1.0.0"
47
+ },
48
+ "scripts": {
49
+ "build": "tsup",
50
+ "compile": "tsc -p . --noEmit",
51
+ "test": "vitest run",
52
+ "test:watch": "vitest",
53
+ "verify-dist": "node scripts/verify-dist.mjs",
54
+ "release:check": "pnpm run build && pnpm run test && pnpm run verify-dist"
61
55
  }
62
- }
56
+ }