@debugbundle/mcp 0.1.8 → 0.1.10
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 +3 -1
- package/dist/main.cjs +2150 -131
- package/package.json +5 -4
- package/server.json +39 -0
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@debugbundle/mcp",
|
|
3
|
-
"
|
|
3
|
+
"mcpName": "com.debugbundle/mcp",
|
|
4
|
+
"version": "0.1.10",
|
|
4
5
|
"private": false,
|
|
5
6
|
"description": "Model Context Protocol server for DebugBundle",
|
|
6
7
|
"license": "AGPL-3.0-only",
|
|
@@ -15,18 +16,18 @@
|
|
|
15
16
|
},
|
|
16
17
|
"keywords": ["debugbundle", "debugging", "ai-agent", "mcp", "model-context-protocol"],
|
|
17
18
|
"engines": {
|
|
18
|
-
"node": ">=
|
|
19
|
+
"node": ">=22 <27"
|
|
19
20
|
},
|
|
20
21
|
"type": "module",
|
|
21
22
|
"scripts": {
|
|
22
23
|
"start": "tsx src/entrypoint.ts",
|
|
23
|
-
"build": "esbuild src/entrypoint.ts --bundle --platform=node --format=cjs --target=
|
|
24
|
+
"build": "esbuild src/entrypoint.ts --bundle --platform=node --format=cjs --target=node22 --external:@node-rs/argon2 --outfile=dist/main.cjs",
|
|
24
25
|
"prepack": "npm run build"
|
|
25
26
|
},
|
|
26
27
|
"bin": {
|
|
27
28
|
"debugbundle-mcp": "bin/debugbundle-mcp.js"
|
|
28
29
|
},
|
|
29
|
-
"files": ["bin", "dist", "README.md", "LICENSE"],
|
|
30
|
+
"files": ["bin", "dist", "README.md", "LICENSE", "server.json"],
|
|
30
31
|
"dependencies": {
|
|
31
32
|
"@node-rs/argon2": "^2.0.2"
|
|
32
33
|
},
|
package/server.json
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
|
|
3
|
+
"name": "com.debugbundle/mcp",
|
|
4
|
+
"title": "DebugBundle",
|
|
5
|
+
"description": "Investigate DebugBundle incidents, bundles, reproductions, probes, alerts, webhooks, projects, members, billing, GitHub automation, and local setup from MCP clients.",
|
|
6
|
+
"repository": {
|
|
7
|
+
"url": "https://github.com/debugbundle/debugbundle",
|
|
8
|
+
"source": "github",
|
|
9
|
+
"subfolder": "apps/mcp"
|
|
10
|
+
},
|
|
11
|
+
"version": "0.1.10",
|
|
12
|
+
"packages": [
|
|
13
|
+
{
|
|
14
|
+
"registryType": "npm",
|
|
15
|
+
"registryBaseUrl": "https://registry.npmjs.org",
|
|
16
|
+
"identifier": "@debugbundle/mcp",
|
|
17
|
+
"version": "0.1.10",
|
|
18
|
+
"transport": {
|
|
19
|
+
"type": "stdio"
|
|
20
|
+
},
|
|
21
|
+
"environmentVariables": [
|
|
22
|
+
{
|
|
23
|
+
"name": "DEBUGBUNDLE_MEMBER_TOKEN",
|
|
24
|
+
"description": "Optional DebugBundle member token used by hosted API and MCP management tools when CLI auth state is unavailable.",
|
|
25
|
+
"format": "string",
|
|
26
|
+
"isRequired": false,
|
|
27
|
+
"isSecret": true
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"name": "DEBUGBUNDLE_API_URL",
|
|
31
|
+
"description": "Optional DebugBundle API base URL for self-hosted, staging, or other non-default API environments.",
|
|
32
|
+
"format": "string",
|
|
33
|
+
"isRequired": false,
|
|
34
|
+
"isSecret": false
|
|
35
|
+
}
|
|
36
|
+
]
|
|
37
|
+
}
|
|
38
|
+
]
|
|
39
|
+
}
|