@debugbundle/mcp 1.6.0 → 1.6.2
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 +59 -5
- package/dist/main.cjs +110 -17
- package/package.json +14 -3
- package/server.json +3 -3
package/README.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
# @debugbundle/mcp
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
MCP server for production debugging bundles and incident workflows for AI agents. DebugBundle lets agents inspect incidents, deterministic bundles, reproductions, probes, hosted health checks, alerts, webhooks, projects, and setup state through the same management surface as the API and CLI.
|
|
4
4
|
|
|
5
5
|
## Install
|
|
6
6
|
|
|
7
|
-
Run directly with npm:
|
|
7
|
+
Run the stdio server directly with npm:
|
|
8
8
|
|
|
9
9
|
```bash
|
|
10
10
|
npx @debugbundle/mcp
|
|
@@ -19,7 +19,7 @@ debugbundle-mcp
|
|
|
19
19
|
|
|
20
20
|
Supported Node.js versions: 22.x through 26.x.
|
|
21
21
|
|
|
22
|
-
## MCP Client
|
|
22
|
+
## MCP Client Config
|
|
23
23
|
|
|
24
24
|
```json
|
|
25
25
|
{
|
|
@@ -32,11 +32,65 @@ Supported Node.js versions: 22.x through 26.x.
|
|
|
32
32
|
}
|
|
33
33
|
```
|
|
34
34
|
|
|
35
|
-
|
|
35
|
+
Use `npx -y @debugbundle/mcp` in clients that require noninteractive package execution.
|
|
36
|
+
|
|
37
|
+
## Install Matrix
|
|
38
|
+
|
|
39
|
+
| Environment | Recommended path | Notes |
|
|
40
|
+
| --- | --- | --- |
|
|
41
|
+
| Generic local MCP client | `npx @debugbundle/mcp` | stdio transport |
|
|
42
|
+
| Claude Desktop local MCP | local MCP server config | uses local machine auth/config |
|
|
43
|
+
| Cursor | MCP config with `npx @debugbundle/mcp` | stdio transport |
|
|
44
|
+
| VS Code / GitHub MCP Registry | `com.debugbundle/mcp` | official registry metadata |
|
|
45
|
+
| OpenClaw / ClawHub | DebugBundle skill plus MCP config | use the published skill for workflow guidance |
|
|
46
|
+
| CI/headless agents | `DEBUGBUNDLE_MEMBER_TOKEN` | never use a project token |
|
|
47
|
+
| Self-hosted DebugBundle | `DEBUGBUNDLE_API_URL` plus member auth | points the server at your API base URL |
|
|
48
|
+
|
|
49
|
+
DebugBundle does not expose a hosted remote MCP endpoint today; this package is the local stdio path.
|
|
36
50
|
|
|
37
51
|
## Authentication
|
|
38
52
|
|
|
39
|
-
|
|
53
|
+
| Mode | Use | Notes |
|
|
54
|
+
| --- | --- | --- |
|
|
55
|
+
| CLI auth state | Local developer machines | Reuses `~/.debugbundle/auth.json` when available. |
|
|
56
|
+
| `DEBUGBUNDLE_MEMBER_TOKEN` | Headless or marketplace-managed clients | Member tokens are for CLI/API/MCP read and management operations. |
|
|
57
|
+
| Per-tool `bearerToken` | Explicit advanced automation | Overrides default auth for that call only. |
|
|
58
|
+
| Project token | SDK ingestion only | Do not use project tokens for MCP retrieval or management. |
|
|
59
|
+
|
|
60
|
+
## What Agents Can Do
|
|
61
|
+
|
|
62
|
+
- List active incidents and fetch full incident context.
|
|
63
|
+
- Fetch deterministic debug bundles and reproduction artifacts.
|
|
64
|
+
- Inspect hosted health checks, probes, alerts, webhooks, projects, members, billing, capture policy, and GitHub automation state.
|
|
65
|
+
- Run local and hosted verification through tools such as `verify_local`, `verify_cloud`, `doctor`, `smoke`, and `analyze`.
|
|
66
|
+
- Resolve or reopen incidents after verification.
|
|
67
|
+
|
|
68
|
+
## Troubleshooting
|
|
69
|
+
|
|
70
|
+
| Symptom | Check |
|
|
71
|
+
| --- | --- |
|
|
72
|
+
| Node.js launch failure | Use Node.js 22.x through 26.x. Configure the client to use a supported `node` or `npx` runtime. |
|
|
73
|
+
| Missing local auth | Run `debugbundle login`, or set `DEBUGBUNDLE_MEMBER_TOKEN` for headless and managed clients. |
|
|
74
|
+
| Invalid token | Use a `dbundle_mem_` member token. Project tokens are SDK ingestion-only credentials. |
|
|
75
|
+
| Wrong API host | Leave `DEBUGBUNDLE_API_URL` unset for DebugBundle Cloud; set it only for self-hosted or non-default API hosts. |
|
|
76
|
+
| Local repo not initialized | Run `debugbundle setup` before local-only diagnostics, local bundle analysis, or generated project-skill workflows. |
|
|
77
|
+
|
|
78
|
+
## Links
|
|
79
|
+
|
|
80
|
+
- Docs: https://debugbundle.com/docs/mcp
|
|
81
|
+
- Agent workflows: https://debugbundle.com/docs/agent-workflows
|
|
82
|
+
- LLM index: https://debugbundle.com/llms.txt
|
|
83
|
+
- MCP tool schema: https://debugbundle.com/schemas/mcp-tools.json
|
|
84
|
+
- Official MCP Registry metadata: https://github.com/debugbundle/debugbundle/blob/main/apps/mcp/server.json
|
|
85
|
+
|
|
86
|
+
## Security And Trust
|
|
87
|
+
|
|
88
|
+
- Official MCP Registry name: `com.debugbundle/mcp`.
|
|
89
|
+
- Official npm package: `@debugbundle/mcp`.
|
|
90
|
+
- Source repository: https://github.com/debugbundle/debugbundle/tree/main/apps/mcp
|
|
91
|
+
- License: AGPL-3.0-only.
|
|
92
|
+
- The server uses stdio transport and local process credentials. It does not include hidden hosted management auth.
|
|
93
|
+
- Public examples must use placeholders only; never paste real member tokens, project tokens, webhook secrets, or customer configuration into marketplace listings.
|
|
40
94
|
|
|
41
95
|
## License
|
|
42
96
|
|
package/dist/main.cjs
CHANGED
|
@@ -14467,6 +14467,7 @@ var AlertConditionTypeSchema = external_exports.enum([
|
|
|
14467
14467
|
"severity_threshold",
|
|
14468
14468
|
"regression_after_deploy"
|
|
14469
14469
|
]);
|
|
14470
|
+
var AlertSeverityLifecycleScopeSchema = external_exports.enum(["new_incident", "incident_regressed", "both"]);
|
|
14470
14471
|
var AlertSchema = external_exports.object({
|
|
14471
14472
|
alert_id: external_exports.string(),
|
|
14472
14473
|
project_id: external_exports.string(),
|
|
@@ -14475,6 +14476,7 @@ var AlertSchema = external_exports.object({
|
|
|
14475
14476
|
channel: AlertChannelSchema,
|
|
14476
14477
|
condition_type: AlertConditionTypeSchema,
|
|
14477
14478
|
severity_min: external_exports.enum(["low", "medium", "high", "critical"]).nullable(),
|
|
14479
|
+
severity_lifecycle_scope: AlertSeverityLifecycleScopeSchema.nullable().optional().default(null),
|
|
14478
14480
|
cooldown_seconds: external_exports.number().int().min(0),
|
|
14479
14481
|
config: external_exports.record(external_exports.string(), external_exports.unknown()),
|
|
14480
14482
|
is_enabled: external_exports.boolean(),
|
|
@@ -14562,6 +14564,9 @@ function createAlertApi(client) {
|
|
|
14562
14564
|
if (input.severityMin !== void 0) {
|
|
14563
14565
|
body.severity_min = input.severityMin;
|
|
14564
14566
|
}
|
|
14567
|
+
if (input.severityLifecycleScope !== void 0) {
|
|
14568
|
+
body.severity_lifecycle_scope = input.severityLifecycleScope;
|
|
14569
|
+
}
|
|
14565
14570
|
if (input.cooldownSeconds !== void 0) {
|
|
14566
14571
|
body.cooldown_seconds = input.cooldownSeconds;
|
|
14567
14572
|
}
|
|
@@ -14591,6 +14596,9 @@ function createAlertApi(client) {
|
|
|
14591
14596
|
if (input.severityMin !== void 0) {
|
|
14592
14597
|
body.severity_min = input.severityMin;
|
|
14593
14598
|
}
|
|
14599
|
+
if (input.severityLifecycleScope !== void 0) {
|
|
14600
|
+
body.severity_lifecycle_scope = input.severityLifecycleScope;
|
|
14601
|
+
}
|
|
14594
14602
|
if (input.cooldownSeconds !== void 0) {
|
|
14595
14603
|
body.cooldown_seconds = input.cooldownSeconds;
|
|
14596
14604
|
}
|
|
@@ -18061,9 +18069,12 @@ function buildSkill() {
|
|
|
18061
18069
|
"description: >-",
|
|
18062
18070
|
" Investigate runtime incidents, inspect debug bundles, generate reproductions,",
|
|
18063
18071
|
" run improvement analysis, and inspect operational controls using the DebugBundle",
|
|
18064
|
-
" CLI and local project scaffold. Use when
|
|
18065
|
-
"
|
|
18066
|
-
"
|
|
18072
|
+
" CLI and local project scaffold. Use when runtime errors/failures or captured",
|
|
18073
|
+
" operational evidence are relevant: production/customer-facing incidents,",
|
|
18074
|
+
" endpoint downtime, health-check failures, notification or webhook failures,",
|
|
18075
|
+
" probes, noisy captured incidents, or explicit DebugBundle artifact requests. Do not use for",
|
|
18076
|
+
" deterministic local source, UI, layout, copy, calculation, refactor, or",
|
|
18077
|
+
" test-only issues unless runtime evidence is needed.",
|
|
18067
18078
|
"metadata:",
|
|
18068
18079
|
" author: debugbundle",
|
|
18069
18080
|
' version: "1.0"',
|
|
@@ -18071,11 +18082,22 @@ function buildSkill() {
|
|
|
18071
18082
|
"",
|
|
18072
18083
|
"# DebugBundle",
|
|
18073
18084
|
"",
|
|
18074
|
-
"Use DebugBundle
|
|
18085
|
+
"Use DebugBundle when runtime evidence is relevant to the task.",
|
|
18086
|
+
"",
|
|
18087
|
+
"## When To Use DebugBundle",
|
|
18088
|
+
"",
|
|
18089
|
+
"Use the incident/artifact workflow when the user reports:",
|
|
18090
|
+
"",
|
|
18091
|
+
"- production or customer-facing incidents, runtime failures, regressions, broken deploys, or unknown errors likely to have generated captured events",
|
|
18092
|
+
"- endpoint downtime or a failing hosted health check",
|
|
18093
|
+
"- missing, duplicate, or failed alerts, webhooks, GitHub dispatches, probes, or other operational delivery",
|
|
18094
|
+
"- a specific DebugBundle incident id, bundle, reproduction, report, or noisy captured incident",
|
|
18095
|
+
"",
|
|
18096
|
+
"For deterministic local source-code, UI, layout, copy, calculation, refactor, or test-only issues, inspect source and tests first. Do not check DebugBundle incidents unless the user asks, the issue involves live runtime behavior, or captured evidence is needed.",
|
|
18075
18097
|
"",
|
|
18076
18098
|
"## Investigation Quickstart",
|
|
18077
18099
|
"",
|
|
18078
|
-
"When the
|
|
18100
|
+
"When the issue matches the runtime/incident criteria above, start here before reading arbitrary source files.",
|
|
18079
18101
|
"",
|
|
18080
18102
|
"1. Run `debugbundle doctor --json` to learn whether the project is local-only or connected and whether the local scaffold is healthy.",
|
|
18081
18103
|
"2. If `debugbundle doctor --json` reports `mode=local-only`, start with `debugbundle incidents --source local --status active --json`.",
|
|
@@ -18095,7 +18117,7 @@ function buildSkill() {
|
|
|
18095
18117
|
"",
|
|
18096
18118
|
"## Core Workflow",
|
|
18097
18119
|
"",
|
|
18098
|
-
"1.
|
|
18120
|
+
"1. For qualifying runtime/incident work, check DebugBundle incidents first to avoid re-investigating a known failure.",
|
|
18099
18121
|
"2. Inspect the incident bundle and reproduction artifact before proposing a fix.",
|
|
18100
18122
|
"3. Run `debugbundle analyze --type improvement --local` after local processing when you need a deterministic change plan.",
|
|
18101
18123
|
"4. Apply the narrowest fix, then validate it with the repository test workflow from `.debugbundle/profile.json`.",
|
|
@@ -18150,6 +18172,7 @@ function buildSkill() {
|
|
|
18150
18172
|
"- Availability checks: `https://debugbundle.com/docs/availability-checks`",
|
|
18151
18173
|
"- Probes: `https://debugbundle.com/docs/probes`",
|
|
18152
18174
|
"- Capture policy and rules: `https://debugbundle.com/docs/capture-policy`",
|
|
18175
|
+
"- Managing noise: `https://debugbundle.com/docs/managing-noise`",
|
|
18153
18176
|
"- Alerts: `https://debugbundle.com/docs/alerts` and `https://debugbundle.com/docs/cli/alerts`",
|
|
18154
18177
|
"- Webhooks: `https://debugbundle.com/docs/webhooks` and `https://debugbundle.com/docs/cli/webhooks`",
|
|
18155
18178
|
"- API ingestion: `https://debugbundle.com/docs/api/ingestion`",
|
|
@@ -18278,6 +18301,7 @@ function buildCliReference() {
|
|
|
18278
18301
|
"- Webhooks: `https://debugbundle.com/docs/webhooks`, `https://debugbundle.com/docs/cli/webhooks`, and `https://debugbundle.com/docs/api/webhooks`",
|
|
18279
18302
|
"- Probes: `https://debugbundle.com/docs/probes` and `https://debugbundle.com/docs/api/probes`",
|
|
18280
18303
|
"- Capture policy and rules: `https://debugbundle.com/docs/capture-policy`",
|
|
18304
|
+
"- Managing noise: `https://debugbundle.com/docs/managing-noise`",
|
|
18281
18305
|
"- Availability checks: `https://debugbundle.com/docs/availability-checks`",
|
|
18282
18306
|
"- MCP tool catalog: `https://debugbundle.com/docs/mcp/tools`",
|
|
18283
18307
|
"",
|
|
@@ -18320,7 +18344,7 @@ function buildMcpReference() {
|
|
|
18320
18344
|
return [
|
|
18321
18345
|
"# DebugBundle MCP Reference",
|
|
18322
18346
|
"",
|
|
18323
|
-
"Use the same
|
|
18347
|
+
"Use the same runtime-evidence-gated workflow through MCP when an agent is operating in connected mode.",
|
|
18324
18348
|
"",
|
|
18325
18349
|
"## Investigation Tools",
|
|
18326
18350
|
"",
|
|
@@ -18334,8 +18358,9 @@ function buildMcpReference() {
|
|
|
18334
18358
|
"- `analyze` \u2014 run local agent-oriented analysis from local bundles and skill schemas.",
|
|
18335
18359
|
"",
|
|
18336
18360
|
"- Prefer bundle retrieval tools before reading raw repository files.",
|
|
18337
|
-
"- Use MCP bundle access when the current issue originated in production.",
|
|
18338
|
-
"-
|
|
18361
|
+
"- Use MCP bundle access when the current issue originated in production or otherwise needs captured runtime evidence.",
|
|
18362
|
+
"- For deterministic local source, UI, layout, copy, calculation, refactor, or test-only issues, inspect source and tests first unless the user asks for DebugBundle evidence.",
|
|
18363
|
+
"- Resolve fixed or intentionally generated incidents with `resolve_incident` or `resolve_incidents` so active incidents stay actionable.",
|
|
18339
18364
|
"- Fall back to local CLI processing when the project is local-only.",
|
|
18340
18365
|
"",
|
|
18341
18366
|
"## Noise and Capture Policy Tools",
|
|
@@ -18382,6 +18407,7 @@ function buildMcpReference() {
|
|
|
18382
18407
|
"- Availability checks: `https://debugbundle.com/docs/availability-checks`",
|
|
18383
18408
|
"- Probes: `https://debugbundle.com/docs/probes`",
|
|
18384
18409
|
"- Capture policy and rules: `https://debugbundle.com/docs/capture-policy`",
|
|
18410
|
+
"- Managing noise: `https://debugbundle.com/docs/managing-noise`",
|
|
18385
18411
|
"- Alerts: `https://debugbundle.com/docs/alerts`",
|
|
18386
18412
|
"- Webhooks: `https://debugbundle.com/docs/webhooks`",
|
|
18387
18413
|
"- API ingestion: `https://debugbundle.com/docs/api/ingestion`",
|
|
@@ -18487,13 +18513,21 @@ function buildSkillEvals() {
|
|
|
18487
18513
|
skill: "debugbundle",
|
|
18488
18514
|
evaluations: [
|
|
18489
18515
|
{
|
|
18490
|
-
name: "
|
|
18516
|
+
name: "runtime_incident_workflow",
|
|
18491
18517
|
prompt: "The user reports a production checkout failure. Confirm the skill tells the agent to inspect DebugBundle artifacts first.",
|
|
18492
18518
|
expected_behavior: [
|
|
18493
|
-
"Check incidents before reading arbitrary source files.",
|
|
18519
|
+
"Check incidents before reading arbitrary source files for qualifying runtime or production incidents.",
|
|
18494
18520
|
"Read the skill workflow before proposing a fix."
|
|
18495
18521
|
]
|
|
18496
18522
|
},
|
|
18523
|
+
{
|
|
18524
|
+
name: "local_source_issue_gate",
|
|
18525
|
+
prompt: "The user reports a deterministic UI calculation glitch in local code with no runtime incident or report. Confirm the skill avoids checking DebugBundle incidents by default.",
|
|
18526
|
+
expected_behavior: [
|
|
18527
|
+
"Inspect source and tests first for deterministic local UI, layout, copy, calculation, refactor, or test-only issues.",
|
|
18528
|
+
"Do not check DebugBundle incidents unless the user asks, live runtime behavior is involved, or captured evidence is needed."
|
|
18529
|
+
]
|
|
18530
|
+
},
|
|
18497
18531
|
{
|
|
18498
18532
|
name: "profile_validation_task",
|
|
18499
18533
|
prompt: "The generated profile is shallow. Confirm the skill teaches the agent how to validate and enrich it.",
|
|
@@ -22122,11 +22156,19 @@ var STORAGE_BOOTSTRAP_STATEMENTS = [
|
|
|
22122
22156
|
channel text NOT NULL,
|
|
22123
22157
|
condition_type text NOT NULL,
|
|
22124
22158
|
severity_min text,
|
|
22159
|
+
severity_lifecycle_scope text,
|
|
22125
22160
|
cooldown_seconds integer NOT NULL DEFAULT 0,
|
|
22126
22161
|
config jsonb NOT NULL DEFAULT '{}'::jsonb,
|
|
22127
22162
|
is_enabled boolean NOT NULL DEFAULT true,
|
|
22128
22163
|
created_at timestamptz NOT NULL DEFAULT now(),
|
|
22129
|
-
updated_at timestamptz NOT NULL DEFAULT now()
|
|
22164
|
+
updated_at timestamptz NOT NULL DEFAULT now(),
|
|
22165
|
+
CONSTRAINT alert_rules_severity_lifecycle_scope_check CHECK (
|
|
22166
|
+
severity_lifecycle_scope IS NULL
|
|
22167
|
+
OR (
|
|
22168
|
+
condition_type = 'severity_threshold'
|
|
22169
|
+
AND severity_lifecycle_scope IN ('new_incident', 'incident_regressed', 'both')
|
|
22170
|
+
)
|
|
22171
|
+
)
|
|
22130
22172
|
)
|
|
22131
22173
|
`,
|
|
22132
22174
|
`
|
|
@@ -23681,6 +23723,36 @@ var STORAGE_SCHEMA_MIGRATIONS = [
|
|
|
23681
23723
|
)
|
|
23682
23724
|
`
|
|
23683
23725
|
]
|
|
23726
|
+
}),
|
|
23727
|
+
defineStorageSchemaMigration({
|
|
23728
|
+
id: "202606260001_add_alert_severity_lifecycle_scope",
|
|
23729
|
+
description: "Add lifecycle scope for severity-threshold alert rules so new incidents and regressions can notify independently.",
|
|
23730
|
+
statements: [
|
|
23731
|
+
"ALTER TABLE alert_rules ADD COLUMN IF NOT EXISTS severity_lifecycle_scope text",
|
|
23732
|
+
`
|
|
23733
|
+
UPDATE alert_rules
|
|
23734
|
+
SET severity_lifecycle_scope = 'both'
|
|
23735
|
+
WHERE condition_type = 'severity_threshold'
|
|
23736
|
+
AND severity_lifecycle_scope IS NULL
|
|
23737
|
+
`,
|
|
23738
|
+
`
|
|
23739
|
+
UPDATE alert_rules
|
|
23740
|
+
SET severity_lifecycle_scope = NULL
|
|
23741
|
+
WHERE condition_type <> 'severity_threshold'
|
|
23742
|
+
AND severity_lifecycle_scope IS NOT NULL
|
|
23743
|
+
`,
|
|
23744
|
+
"ALTER TABLE alert_rules DROP CONSTRAINT IF EXISTS alert_rules_severity_lifecycle_scope_check",
|
|
23745
|
+
`
|
|
23746
|
+
ALTER TABLE alert_rules
|
|
23747
|
+
ADD CONSTRAINT alert_rules_severity_lifecycle_scope_check CHECK (
|
|
23748
|
+
severity_lifecycle_scope IS NULL
|
|
23749
|
+
OR (
|
|
23750
|
+
condition_type = 'severity_threshold'
|
|
23751
|
+
AND severity_lifecycle_scope IN ('new_incident', 'incident_regressed', 'both')
|
|
23752
|
+
)
|
|
23753
|
+
)
|
|
23754
|
+
`
|
|
23755
|
+
]
|
|
23684
23756
|
})
|
|
23685
23757
|
];
|
|
23686
23758
|
|
|
@@ -27050,6 +27122,9 @@ function createAlertMcpTools(api) {
|
|
|
27050
27122
|
if (typeof input["severityMin"] === "string") {
|
|
27051
27123
|
requestInput.severityMin = input["severityMin"];
|
|
27052
27124
|
}
|
|
27125
|
+
if (typeof input["severityLifecycleScope"] === "string") {
|
|
27126
|
+
requestInput.severityLifecycleScope = input["severityLifecycleScope"];
|
|
27127
|
+
}
|
|
27053
27128
|
if (typeof input["cooldownSeconds"] === "number") {
|
|
27054
27129
|
requestInput.cooldownSeconds = input["cooldownSeconds"];
|
|
27055
27130
|
}
|
|
@@ -27084,6 +27159,11 @@ function createAlertMcpTools(api) {
|
|
|
27084
27159
|
} else if (input["severityMin"] === null) {
|
|
27085
27160
|
requestInput.severityMin = null;
|
|
27086
27161
|
}
|
|
27162
|
+
if (typeof input["severityLifecycleScope"] === "string") {
|
|
27163
|
+
requestInput.severityLifecycleScope = input["severityLifecycleScope"];
|
|
27164
|
+
} else if (input["severityLifecycleScope"] === null) {
|
|
27165
|
+
requestInput.severityLifecycleScope = null;
|
|
27166
|
+
}
|
|
27087
27167
|
if (typeof input["cooldownSeconds"] === "number") {
|
|
27088
27168
|
requestInput.cooldownSeconds = input["cooldownSeconds"];
|
|
27089
27169
|
}
|
|
@@ -30611,9 +30691,9 @@ var zodToJsonSchema = (schema, options) => {
|
|
|
30611
30691
|
var package_default = {
|
|
30612
30692
|
name: "@debugbundle/mcp",
|
|
30613
30693
|
mcpName: "com.debugbundle/mcp",
|
|
30614
|
-
version: "1.6.
|
|
30694
|
+
version: "1.6.2",
|
|
30615
30695
|
private: false,
|
|
30616
|
-
description: "
|
|
30696
|
+
description: "MCP server for production debugging bundles and incident workflows for AI agents",
|
|
30617
30697
|
license: "AGPL-3.0-only",
|
|
30618
30698
|
repository: {
|
|
30619
30699
|
type: "git",
|
|
@@ -30624,7 +30704,18 @@ var package_default = {
|
|
|
30624
30704
|
bugs: {
|
|
30625
30705
|
url: "https://github.com/debugbundle/debugbundle/issues"
|
|
30626
30706
|
},
|
|
30627
|
-
keywords: [
|
|
30707
|
+
keywords: [
|
|
30708
|
+
"debugbundle",
|
|
30709
|
+
"debugging",
|
|
30710
|
+
"production-debugging",
|
|
30711
|
+
"incident-management",
|
|
30712
|
+
"debug-bundles",
|
|
30713
|
+
"ai-agent",
|
|
30714
|
+
"ai-agent-debugging",
|
|
30715
|
+
"mcp",
|
|
30716
|
+
"model-context-protocol",
|
|
30717
|
+
"observability"
|
|
30718
|
+
],
|
|
30628
30719
|
engines: {
|
|
30629
30720
|
node: ">=22 <27"
|
|
30630
30721
|
},
|
|
@@ -31362,7 +31453,7 @@ var MCP_TOOL_CATALOG = [
|
|
|
31362
31453
|
{
|
|
31363
31454
|
name: "create_alert",
|
|
31364
31455
|
group: "alerts",
|
|
31365
|
-
description: "Create an alert rule.",
|
|
31456
|
+
description: "Create an alert rule, including optional severity-threshold lifecycle scope.",
|
|
31366
31457
|
inputSchema: external_exports.object({
|
|
31367
31458
|
bearerToken: external_exports.string(),
|
|
31368
31459
|
projectId: external_exports.string(),
|
|
@@ -31370,6 +31461,7 @@ var MCP_TOOL_CATALOG = [
|
|
|
31370
31461
|
channel: external_exports.string(),
|
|
31371
31462
|
conditionType: external_exports.string(),
|
|
31372
31463
|
severityMin: external_exports.string().optional(),
|
|
31464
|
+
severityLifecycleScope: external_exports.enum(["new_incident", "incident_regressed", "both"]).optional(),
|
|
31373
31465
|
cooldownSeconds: external_exports.number().int().min(0).max(604800).optional(),
|
|
31374
31466
|
config: jsonObjectSchema,
|
|
31375
31467
|
isEnabled: external_exports.boolean().optional()
|
|
@@ -31378,7 +31470,7 @@ var MCP_TOOL_CATALOG = [
|
|
|
31378
31470
|
{
|
|
31379
31471
|
name: "update_alert",
|
|
31380
31472
|
group: "alerts",
|
|
31381
|
-
description: "Update an alert rule.",
|
|
31473
|
+
description: "Update an alert rule, including optional severity-threshold lifecycle scope.",
|
|
31382
31474
|
inputSchema: external_exports.object({
|
|
31383
31475
|
bearerToken: external_exports.string(),
|
|
31384
31476
|
projectId: external_exports.string(),
|
|
@@ -31387,6 +31479,7 @@ var MCP_TOOL_CATALOG = [
|
|
|
31387
31479
|
channel: external_exports.string().optional(),
|
|
31388
31480
|
conditionType: external_exports.string().optional(),
|
|
31389
31481
|
severityMin: external_exports.string().nullable().optional(),
|
|
31482
|
+
severityLifecycleScope: external_exports.enum(["new_incident", "incident_regressed", "both"]).nullable().optional(),
|
|
31390
31483
|
cooldownSeconds: external_exports.number().int().min(0).max(604800).optional(),
|
|
31391
31484
|
config: jsonObjectSchema.nullable().optional(),
|
|
31392
31485
|
isEnabled: external_exports.boolean().optional()
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@debugbundle/mcp",
|
|
3
3
|
"mcpName": "com.debugbundle/mcp",
|
|
4
|
-
"version": "1.6.
|
|
4
|
+
"version": "1.6.2",
|
|
5
5
|
"private": false,
|
|
6
|
-
"description": "
|
|
6
|
+
"description": "MCP server for production debugging bundles and incident workflows for AI agents",
|
|
7
7
|
"license": "AGPL-3.0-only",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
@@ -14,7 +14,18 @@
|
|
|
14
14
|
"bugs": {
|
|
15
15
|
"url": "https://github.com/debugbundle/debugbundle/issues"
|
|
16
16
|
},
|
|
17
|
-
"keywords": [
|
|
17
|
+
"keywords": [
|
|
18
|
+
"debugbundle",
|
|
19
|
+
"debugging",
|
|
20
|
+
"production-debugging",
|
|
21
|
+
"incident-management",
|
|
22
|
+
"debug-bundles",
|
|
23
|
+
"ai-agent",
|
|
24
|
+
"ai-agent-debugging",
|
|
25
|
+
"mcp",
|
|
26
|
+
"model-context-protocol",
|
|
27
|
+
"observability"
|
|
28
|
+
],
|
|
18
29
|
"engines": {
|
|
19
30
|
"node": ">=22 <27"
|
|
20
31
|
},
|
package/server.json
CHANGED
|
@@ -2,19 +2,19 @@
|
|
|
2
2
|
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
|
|
3
3
|
"name": "com.debugbundle/mcp",
|
|
4
4
|
"title": "DebugBundle",
|
|
5
|
-
"description": "
|
|
5
|
+
"description": "DebugBundle MCP server for incidents, bundles, reproductions, health checks, probes, and ops.",
|
|
6
6
|
"repository": {
|
|
7
7
|
"url": "https://github.com/debugbundle/debugbundle",
|
|
8
8
|
"source": "github",
|
|
9
9
|
"subfolder": "apps/mcp"
|
|
10
10
|
},
|
|
11
|
-
"version": "1.6.
|
|
11
|
+
"version": "1.6.2",
|
|
12
12
|
"packages": [
|
|
13
13
|
{
|
|
14
14
|
"registryType": "npm",
|
|
15
15
|
"registryBaseUrl": "https://registry.npmjs.org",
|
|
16
16
|
"identifier": "@debugbundle/mcp",
|
|
17
|
-
"version": "1.6.
|
|
17
|
+
"version": "1.6.2",
|
|
18
18
|
"transport": {
|
|
19
19
|
"type": "stdio"
|
|
20
20
|
},
|