@debugg-ai/debugg-ai-mcp 1.0.56 → 1.0.57
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 +12 -0
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -108,6 +108,18 @@ npm run test:e2e # real end-to-end evals against the backend
|
|
|
108
108
|
|
|
109
109
|
The eval suite spawns the built MCP server as a subprocess, exercises every tool against a real backend, and writes per-flow artifacts to `scripts/evals/artifacts/<timestamp>/`. See `scripts/evals/flows/` for the individual scenarios.
|
|
110
110
|
|
|
111
|
+
### MCP registration: `debugg-ai-local` vs `debugg-ai`
|
|
112
|
+
|
|
113
|
+
This repo ships a `.mcp.json` that registers a **project-scoped** server named `debugg-ai-local` pointing at `node dist/index.js` — the freshly-built local code. It only activates when Claude Code's working directory is this repo.
|
|
114
|
+
|
|
115
|
+
Your other projects should use the **user-scoped** `debugg-ai` registration that pulls from the published npm package:
|
|
116
|
+
|
|
117
|
+
```bash
|
|
118
|
+
npm run mcp:global # registers debugg-ai in ~/.claude.json to npx -y @debugg-ai/debugg-ai-mcp
|
|
119
|
+
```
|
|
120
|
+
|
|
121
|
+
After editing code here, run `npm run mcp:local` (which just rebuilds) so the next invocation of `debugg-ai-local` picks up your changes.
|
|
122
|
+
|
|
111
123
|
## Links
|
|
112
124
|
|
|
113
125
|
[Dashboard](https://app.debugg.ai) · [Docs](https://debugg.ai/docs) · [Issues](https://github.com/debugg-ai/debugg-ai-mcp/issues) · [Discord](https://debugg.ai/discord)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@debugg-ai/debugg-ai-mcp",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.57",
|
|
4
4
|
"description": "Zero-Config, Fully AI-Managed End-to-End Testing for all code gen platforms.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -26,8 +26,8 @@
|
|
|
26
26
|
"version:major": "npm version major --no-git-tag-version",
|
|
27
27
|
"publish:check": "npm pack --dry-run",
|
|
28
28
|
"prepublishOnly": "npm test && npm run build",
|
|
29
|
-
"mcp:local": "npm run build &&
|
|
30
|
-
"mcp:
|
|
29
|
+
"mcp:local": "npm run build && echo 'Local MCP built. Claude Code auto-registers it as debugg-ai-local from .mcp.json when cwd is this repo.'",
|
|
30
|
+
"mcp:global": "claude mcp remove debugg-ai 2>/dev/null; claude mcp add debugg-ai -s user -e DEBUGGAI_API_KEY=KrvXlzVFXVZO82UErXye5N7CtnmBTu1GKULrJnwXRRU -e POSTHOG_API_KEY=phc_4h2Yov2P0Vc9UMqfKf3dYKSQ6THOs7N6LZR0VKYopZN -- npx -y @debugg-ai/debugg-ai-mcp"
|
|
31
31
|
},
|
|
32
32
|
"keywords": [
|
|
33
33
|
"debugg",
|