@debugai/mcp 2.1.0 → 2.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.
Files changed (2) hide show
  1. package/README.md +10 -0
  2. package/package.json +6 -3
package/README.md CHANGED
@@ -185,6 +185,8 @@ Run `npx -y @debugai/mcp doctor` first. It checks your Node version, whether a k
185
185
 
186
186
  ## Changelog
187
187
 
188
+ **2.1.1**: metadata only. Adds `mcpName` for official MCP registry ownership verification, fixes the npm package page's repository link.
189
+
188
190
  **2.1.0**: one-command setup. Browser sign-in over a device link (no key pasting), automatic client config writing with backups, `doctor` for diagnosing a broken setup, and in-conversation sign-in when an agent calls a tool before you have an account.
189
191
 
190
192
  **2.0.0**: `report_outcome` tool, ready-to-apply `edits` per fix, and the three-state verification label.
@@ -196,4 +198,12 @@ npm install
196
198
  npm test # builds, then runs unit + spawned-process e2e tests
197
199
  ```
198
200
 
201
+ ## Source
202
+
203
+ [github.com/1shizaan/debugai-mcp](https://github.com/1shizaan/debugai-mcp) is the source for this package, mirrored from the directory it is developed in. It carries the full commit history for these files, so `git log` and `git blame` work normally.
204
+
205
+ The client is MIT and complete: the stdio server, the device-link sign-in, the config writer, and the tests are all here. The analysis itself runs on DebugAI's servers and is not part of this package.
206
+
207
+ Issues and pull requests are welcome on that repository.
208
+
199
209
  MIT © DebugAI
package/package.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "@debugai/mcp",
3
- "version": "2.1.0",
3
+ "version": "2.1.1",
4
+ "mcpName": "io.github.1shizaan/debugai-mcp",
4
5
  "description": "DebugAI MCP server. One command sets it up in Claude Desktop, Claude Code, Cursor, Zed, Windsurf, Cline or any MCP client: browser sign-in, no key pasting, no config editing.",
5
6
  "license": "MIT",
6
7
  "type": "module",
@@ -36,8 +37,10 @@
36
37
  "homepage": "https://debugai.io",
37
38
  "repository": {
38
39
  "type": "git",
39
- "url": "git+https://github.com/1shizaan/debugai-mvp.git",
40
- "directory": "packages/mcp"
40
+ "url": "git+https://github.com/1shizaan/debugai-mcp.git"
41
+ },
42
+ "bugs": {
43
+ "url": "https://github.com/1shizaan/debugai-mcp/issues"
41
44
  },
42
45
  "publishConfig": {
43
46
  "access": "public"