@roeeash/vibecheck-mcp 0.1.0 → 0.1.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.
- package/README.md +10 -10
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -25,10 +25,7 @@ Add `.mcp.json` to your project root:
|
|
|
25
25
|
"mcpServers": {
|
|
26
26
|
"vibecheck": {
|
|
27
27
|
"command": "npx",
|
|
28
|
-
"args": ["vibecheck-mcp@latest"]
|
|
29
|
-
"env": {
|
|
30
|
-
"DEV_PORT": "3000"
|
|
31
|
-
}
|
|
28
|
+
"args": ["@roeeash/vibecheck-mcp@latest"]
|
|
32
29
|
}
|
|
33
30
|
}
|
|
34
31
|
}
|
|
@@ -36,12 +33,10 @@ Add `.mcp.json` to your project root:
|
|
|
36
33
|
|
|
37
34
|
Change `DEV_PORT` to match your dev server's port (default: `5173`).
|
|
38
35
|
|
|
39
|
-
Open the project in **Claude Code** — the MCP server loads automatically. Start your dev server, then
|
|
36
|
+
Open the project in **Claude Code** — the MCP server loads automatically. Start your dev server, then run:
|
|
40
37
|
|
|
41
38
|
```
|
|
42
|
-
|
|
43
|
-
audit_dev_server(/dashboard)
|
|
44
|
-
get_last_audit()
|
|
39
|
+
vibecheck
|
|
45
40
|
```
|
|
46
41
|
|
|
47
42
|
---
|
|
@@ -50,8 +45,13 @@ get_last_audit()
|
|
|
50
45
|
|
|
51
46
|
| Tool | Description |
|
|
52
47
|
|---|---|
|
|
53
|
-
| `
|
|
54
|
-
|
|
48
|
+
| `vibecheck` | Audit your dev server. Starts the audit API automatically and returns a full report. |
|
|
49
|
+
|
|
50
|
+
> **Note:** `vibecheck` is a deferred tool. Before calling it, Claude must load its schema via `ToolSearch`:
|
|
51
|
+
> ```
|
|
52
|
+
> ToolSearch select:vibecheck
|
|
53
|
+
> ```
|
|
54
|
+
> After that, `vibecheck` can be called normally in the same session.
|
|
55
55
|
|
|
56
56
|
---
|
|
57
57
|
|