@debugbundle/mcp 1.3.0 → 1.4.0

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/dist/main.cjs CHANGED
@@ -15090,6 +15090,10 @@ function createGitHubManagementApi(client) {
15090
15090
 
15091
15091
  // ../../packages/project-management-client/src/index.ts
15092
15092
  var ProjectMetricsSchema = external_exports.object({
15093
+ open_incidents: external_exports.number().int().nonnegative().default(0),
15094
+ regressed_incidents: external_exports.number().int().nonnegative().default(0),
15095
+ opened_incidents_today: external_exports.number().int().nonnegative().default(0),
15096
+ opened_incidents_month: external_exports.number().int().nonnegative().default(0),
15093
15097
  monthly_bundle_requests: external_exports.number().int().nonnegative(),
15094
15098
  monthly_raw_ingested_events: external_exports.number().int().nonnegative(),
15095
15099
  retained_bundles: external_exports.number().int().nonnegative(),
@@ -15485,6 +15489,9 @@ function createRetrievalApi(client) {
15485
15489
  if (input.severity !== void 0) {
15486
15490
  query.set("severity", input.severity);
15487
15491
  }
15492
+ if (input.firstSeenAfter !== void 0) {
15493
+ query.set("first_seen_after", input.firstSeenAfter);
15494
+ }
15488
15495
  if (input.cursor !== void 0) {
15489
15496
  query.set("cursor", input.cursor);
15490
15497
  }
@@ -20126,6 +20133,88 @@ var DebugbundleNdjsonStructuredEntrySchema = external_exports.object({
20126
20133
  service: external_exports.string().min(1)
20127
20134
  });
20128
20135
 
20136
+ // ../../packages/storage/src/account-analytics-store.ts
20137
+ var ACCOUNT_METRIC_KEYS = [
20138
+ "account_created",
20139
+ "account_deleted",
20140
+ "project_created",
20141
+ "project_deleted",
20142
+ "raw_events_accepted",
20143
+ "raw_events_rejected",
20144
+ "events_rejected_malformed",
20145
+ "events_rejected_rate_limited",
20146
+ "events_rejected_quota",
20147
+ "events_rejected_capture_policy",
20148
+ "events_rejected_capture_rule",
20149
+ "billable_events_counted",
20150
+ "incident_signal_events_counted",
20151
+ "context_signal_events_counted",
20152
+ "operational_signal_events_counted",
20153
+ "local_verification_events_accepted",
20154
+ "cloud_verification_events_accepted",
20155
+ "incidents_opened",
20156
+ "incidents_resolved",
20157
+ "incidents_reopened",
20158
+ "incidents_regressed",
20159
+ "incident_occurrences",
20160
+ "incident_occurrences_high_severity",
20161
+ "incident_occurrences_critical_severity",
20162
+ "incidents_auto_detected_spiking",
20163
+ "failure_bundles_created",
20164
+ "failure_bundles_updated",
20165
+ "failure_bundle_generations_failed",
20166
+ "improvement_bundles_created",
20167
+ "improvement_bundles_updated",
20168
+ "improvement_bundle_generations_failed",
20169
+ "reproductions_created",
20170
+ "reproductions_failed",
20171
+ "retention_bundle_owners_rotated",
20172
+ "improvements_opened",
20173
+ "improvements_resolved",
20174
+ "improvements_reopened",
20175
+ "improvements_snoozed",
20176
+ "recurring_incident_improvements_opened",
20177
+ "post_deploy_regression_improvements_opened",
20178
+ "slow_request_improvements_opened",
20179
+ "request_failure_improvements_opened",
20180
+ "warning_log_improvements_opened",
20181
+ "alert_deliveries_created",
20182
+ "alert_deliveries_delivered",
20183
+ "alert_deliveries_failed",
20184
+ "alert_email_digests_sent",
20185
+ "operational_emails_sent",
20186
+ "weekly_reports_sent",
20187
+ "weekly_reports_failed",
20188
+ "webhook_deliveries_created",
20189
+ "webhook_deliveries_delivered",
20190
+ "webhook_deliveries_failed",
20191
+ "webhooks_auto_disabled",
20192
+ "github_dispatches_created",
20193
+ "github_dispatches_delivered",
20194
+ "github_dispatches_failed",
20195
+ "github_dispatch_rules_created",
20196
+ "github_dispatch_rules_deleted",
20197
+ "remote_probe_activations_created",
20198
+ "remote_probe_activations_expired",
20199
+ "probe_events_accepted",
20200
+ "capture_rules_created",
20201
+ "capture_rules_deleted",
20202
+ "capture_policy_updates",
20203
+ "trial_started",
20204
+ "trial_converted",
20205
+ "trial_expired",
20206
+ "plan_upgraded",
20207
+ "plan_downgraded",
20208
+ "capacity_units_purchased",
20209
+ "capacity_units_reduced",
20210
+ "allowance_warning_emails_sent",
20211
+ "allowance_limit_emails_sent",
20212
+ "projects_existing_at_account_deletion",
20213
+ "open_incidents_existing_at_account_deletion",
20214
+ "open_improvements_existing_at_account_deletion"
20215
+ ];
20216
+ var AccountMetricKeySchema = external_exports.enum(ACCOUNT_METRIC_KEYS);
20217
+
20129
20218
  // ../../packages/storage/src/incident-context.ts
20130
20219
  function isRecord(value) {
20131
20220
  return typeof value === "object" && value !== null && !Array.isArray(value);
@@ -20411,6 +20500,9 @@ function deriveIncidentReasonFromSourceEventTypes(eventTypes) {
20411
20500
  // ../../packages/auth/src/primitives.ts
20412
20501
  var import_argon2 = require("@node-rs/argon2");
20413
20502
 
20503
+ // ../../packages/auth/src/account-deletion-auth.ts
20504
+ var DEFAULT_ACCOUNT_DELETION_CODE_LIFETIME_MS = 1e3 * 60 * 10;
20505
+
20414
20506
  // ../../packages/auth/src/web-session-auth.ts
20415
20507
  var DEFAULT_SESSION_LIFETIME_MS = 1e3 * 60 * 60 * 24 * 7;
20416
20508
  var DEFAULT_EMAIL_AUTH_CODE_LIFETIME_MS = 1e3 * 60 * 10;
@@ -20635,6 +20727,26 @@ var STORAGE_BOOTSTRAP_STATEMENTS = [
20635
20727
  CREATE INDEX email_auth_challenges_code_hash_idx
20636
20728
  ON email_auth_challenges (code_hash)
20637
20729
  `,
20730
+ `
20731
+ CREATE TABLE account_deletion_challenges (
20732
+ id uuid PRIMARY KEY,
20733
+ organization_id uuid NOT NULL REFERENCES organizations(id) ON DELETE CASCADE,
20734
+ user_id uuid NOT NULL REFERENCES users(id) ON DELETE CASCADE,
20735
+ email text NOT NULL,
20736
+ code_hash text NOT NULL,
20737
+ created_at timestamptz NOT NULL DEFAULT now(),
20738
+ expires_at timestamptz NOT NULL,
20739
+ used_at timestamptz
20740
+ )
20741
+ `,
20742
+ `
20743
+ CREATE INDEX account_deletion_challenges_scope_idx
20744
+ ON account_deletion_challenges (organization_id, user_id, lower(email), created_at DESC)
20745
+ `,
20746
+ `
20747
+ CREATE INDEX account_deletion_challenges_code_hash_idx
20748
+ ON account_deletion_challenges (code_hash)
20749
+ `,
20638
20750
  `
20639
20751
  CREATE TABLE github_device_authorizations (
20640
20752
  id uuid PRIMARY KEY,
@@ -21345,6 +21457,103 @@ var STORAGE_BOOTSTRAP_STATEMENTS = [
21345
21457
  PRIMARY KEY (organization_id, period_starts_at)
21346
21458
  )
21347
21459
  `,
21460
+ `
21461
+ CREATE TABLE project_usage_counters (
21462
+ project_id uuid NOT NULL REFERENCES projects(id) ON DELETE CASCADE,
21463
+ period_starts_at timestamptz NOT NULL,
21464
+ raw_ingested_events integer NOT NULL DEFAULT 0,
21465
+ updated_at timestamptz NOT NULL DEFAULT now(),
21466
+ PRIMARY KEY (project_id, period_starts_at)
21467
+ )
21468
+ `,
21469
+ `
21470
+ CREATE TABLE account_analytics_accounts (
21471
+ analytics_account_id uuid PRIMARY KEY,
21472
+ organization_id uuid UNIQUE,
21473
+ organization_id_hash text NOT NULL UNIQUE,
21474
+ created_at timestamptz NOT NULL,
21475
+ first_seen_at timestamptz NOT NULL,
21476
+ metrics_collection_started_at timestamptz NOT NULL,
21477
+ backfilled_from_retained_rows_at timestamptz,
21478
+ deleted_at timestamptz,
21479
+ initial_plan text,
21480
+ latest_known_plan text,
21481
+ latest_capacity_units integer,
21482
+ account_deleted boolean NOT NULL DEFAULT false,
21483
+ metrics_schema_version integer NOT NULL DEFAULT 1,
21484
+ updated_at timestamptz NOT NULL DEFAULT now()
21485
+ )
21486
+ `,
21487
+ `
21488
+ CREATE TABLE account_metric_periods (
21489
+ analytics_account_id uuid NOT NULL REFERENCES account_analytics_accounts(analytics_account_id),
21490
+ period_grain text NOT NULL CHECK (period_grain IN ('day', 'month', 'year', 'lifetime')),
21491
+ period_starts_at timestamptz NOT NULL,
21492
+ metric_key text NOT NULL,
21493
+ metric_value bigint NOT NULL DEFAULT 0,
21494
+ updated_at timestamptz NOT NULL DEFAULT now(),
21495
+ PRIMARY KEY (analytics_account_id, period_grain, period_starts_at, metric_key)
21496
+ )
21497
+ `,
21498
+ `
21499
+ CREATE INDEX account_metric_periods_grain_period_metric_idx
21500
+ ON account_metric_periods (period_grain, period_starts_at, metric_key)
21501
+ `,
21502
+ `
21503
+ CREATE INDEX account_metric_periods_account_grain_period_idx
21504
+ ON account_metric_periods (analytics_account_id, period_grain, period_starts_at)
21505
+ `,
21506
+ `
21507
+ CREATE TABLE account_metric_events (
21508
+ dedupe_key_hash text PRIMARY KEY,
21509
+ analytics_account_id uuid NOT NULL REFERENCES account_analytics_accounts(analytics_account_id),
21510
+ metric_source text NOT NULL,
21511
+ occurred_at timestamptz NOT NULL,
21512
+ recorded_at timestamptz NOT NULL DEFAULT now(),
21513
+ metric_deltas jsonb NOT NULL
21514
+ )
21515
+ `,
21516
+ `
21517
+ CREATE TABLE account_payment_retention_records (
21518
+ id uuid PRIMARY KEY,
21519
+ analytics_account_id uuid NOT NULL REFERENCES account_analytics_accounts(analytics_account_id),
21520
+ organization_id_hash text NOT NULL,
21521
+ provider text NOT NULL,
21522
+ plan text,
21523
+ billing_state text,
21524
+ stripe_customer_id text,
21525
+ stripe_subscription_id text,
21526
+ billing_period_starts_at timestamptz,
21527
+ billing_period_ends_at timestamptz,
21528
+ additional_capacity_units integer,
21529
+ last_billing_event_id text,
21530
+ account_deleted_at timestamptz NOT NULL,
21531
+ recorded_at timestamptz NOT NULL DEFAULT now(),
21532
+ updated_at timestamptz NOT NULL DEFAULT now(),
21533
+ UNIQUE (analytics_account_id, provider)
21534
+ )
21535
+ `,
21536
+ `
21537
+ CREATE INDEX account_payment_retention_records_provider_idx
21538
+ ON account_payment_retention_records (provider, account_deleted_at DESC)
21539
+ `,
21540
+ `
21541
+ CREATE TABLE account_payment_provider_events (
21542
+ provider_event_key text PRIMARY KEY,
21543
+ analytics_account_id uuid NOT NULL REFERENCES account_analytics_accounts(analytics_account_id),
21544
+ organization_id_hash text NOT NULL,
21545
+ provider text NOT NULL,
21546
+ provider_event_id text NOT NULL,
21547
+ provider_event_type text NOT NULL,
21548
+ processed_at timestamptz NOT NULL,
21549
+ account_deleted_at timestamptz NOT NULL,
21550
+ recorded_at timestamptz NOT NULL DEFAULT now()
21551
+ )
21552
+ `,
21553
+ `
21554
+ CREATE UNIQUE INDEX account_payment_provider_events_provider_event_key
21555
+ ON account_payment_provider_events (provider, provider_event_id)
21556
+ `,
21348
21557
  `
21349
21558
  CREATE TABLE operational_email_deliveries (
21350
21559
  id uuid PRIMARY KEY,
@@ -22113,6 +22322,141 @@ var STORAGE_SCHEMA_MIGRATIONS = [
22113
22322
  statements: [
22114
22323
  "ALTER TABLE capture_policies ADD COLUMN IF NOT EXISTS immediate_client_error_path_rules jsonb"
22115
22324
  ]
22325
+ }),
22326
+ defineStorageSchemaMigration({
22327
+ id: "202606100001_add_project_usage_counters",
22328
+ description: "Add durable project-level raw ingestion counters for project dashboard metrics.",
22329
+ statements: [
22330
+ `
22331
+ CREATE TABLE IF NOT EXISTS project_usage_counters (
22332
+ project_id uuid NOT NULL REFERENCES projects(id) ON DELETE CASCADE,
22333
+ period_starts_at timestamptz NOT NULL,
22334
+ raw_ingested_events integer NOT NULL DEFAULT 0,
22335
+ updated_at timestamptz NOT NULL DEFAULT now(),
22336
+ PRIMARY KEY (project_id, period_starts_at)
22337
+ )
22338
+ `
22339
+ ]
22340
+ }),
22341
+ defineStorageSchemaMigration({
22342
+ id: "202606100002_add_account_deletion_challenges",
22343
+ description: "Add scoped OTP challenges for account deletion confirmation.",
22344
+ statements: [
22345
+ `
22346
+ CREATE TABLE IF NOT EXISTS account_deletion_challenges (
22347
+ id uuid PRIMARY KEY,
22348
+ organization_id uuid NOT NULL REFERENCES organizations(id) ON DELETE CASCADE,
22349
+ user_id uuid NOT NULL REFERENCES users(id) ON DELETE CASCADE,
22350
+ email text NOT NULL,
22351
+ code_hash text NOT NULL,
22352
+ created_at timestamptz NOT NULL DEFAULT now(),
22353
+ expires_at timestamptz NOT NULL,
22354
+ used_at timestamptz
22355
+ )
22356
+ `,
22357
+ `
22358
+ CREATE INDEX IF NOT EXISTS account_deletion_challenges_scope_idx
22359
+ ON account_deletion_challenges (organization_id, user_id, lower(email), created_at DESC)
22360
+ `,
22361
+ `
22362
+ CREATE INDEX IF NOT EXISTS account_deletion_challenges_code_hash_idx
22363
+ ON account_deletion_challenges (code_hash)
22364
+ `
22365
+ ]
22366
+ }),
22367
+ defineStorageSchemaMigration({
22368
+ id: "202606100003_add_account_analytics_and_payment_retention",
22369
+ description: "Add deletion-safe account analytics and payment retention ledgers.",
22370
+ statements: [
22371
+ `
22372
+ CREATE TABLE IF NOT EXISTS account_analytics_accounts (
22373
+ analytics_account_id uuid PRIMARY KEY,
22374
+ organization_id uuid UNIQUE,
22375
+ organization_id_hash text NOT NULL UNIQUE,
22376
+ created_at timestamptz NOT NULL,
22377
+ first_seen_at timestamptz NOT NULL,
22378
+ metrics_collection_started_at timestamptz NOT NULL,
22379
+ backfilled_from_retained_rows_at timestamptz,
22380
+ deleted_at timestamptz,
22381
+ initial_plan text,
22382
+ latest_known_plan text,
22383
+ latest_capacity_units integer,
22384
+ account_deleted boolean NOT NULL DEFAULT false,
22385
+ metrics_schema_version integer NOT NULL DEFAULT 1,
22386
+ updated_at timestamptz NOT NULL DEFAULT now()
22387
+ )
22388
+ `,
22389
+ `
22390
+ CREATE TABLE IF NOT EXISTS account_metric_periods (
22391
+ analytics_account_id uuid NOT NULL REFERENCES account_analytics_accounts(analytics_account_id),
22392
+ period_grain text NOT NULL CHECK (period_grain IN ('day', 'month', 'year', 'lifetime')),
22393
+ period_starts_at timestamptz NOT NULL,
22394
+ metric_key text NOT NULL,
22395
+ metric_value bigint NOT NULL DEFAULT 0,
22396
+ updated_at timestamptz NOT NULL DEFAULT now(),
22397
+ PRIMARY KEY (analytics_account_id, period_grain, period_starts_at, metric_key)
22398
+ )
22399
+ `,
22400
+ `
22401
+ CREATE INDEX IF NOT EXISTS account_metric_periods_grain_period_metric_idx
22402
+ ON account_metric_periods (period_grain, period_starts_at, metric_key)
22403
+ `,
22404
+ `
22405
+ CREATE INDEX IF NOT EXISTS account_metric_periods_account_grain_period_idx
22406
+ ON account_metric_periods (analytics_account_id, period_grain, period_starts_at)
22407
+ `,
22408
+ `
22409
+ CREATE TABLE IF NOT EXISTS account_metric_events (
22410
+ dedupe_key_hash text PRIMARY KEY,
22411
+ analytics_account_id uuid NOT NULL REFERENCES account_analytics_accounts(analytics_account_id),
22412
+ metric_source text NOT NULL,
22413
+ occurred_at timestamptz NOT NULL,
22414
+ recorded_at timestamptz NOT NULL DEFAULT now(),
22415
+ metric_deltas jsonb NOT NULL
22416
+ )
22417
+ `,
22418
+ `
22419
+ CREATE TABLE IF NOT EXISTS account_payment_retention_records (
22420
+ id uuid PRIMARY KEY,
22421
+ analytics_account_id uuid NOT NULL REFERENCES account_analytics_accounts(analytics_account_id),
22422
+ organization_id_hash text NOT NULL,
22423
+ provider text NOT NULL,
22424
+ plan text,
22425
+ billing_state text,
22426
+ stripe_customer_id text,
22427
+ stripe_subscription_id text,
22428
+ billing_period_starts_at timestamptz,
22429
+ billing_period_ends_at timestamptz,
22430
+ additional_capacity_units integer,
22431
+ last_billing_event_id text,
22432
+ account_deleted_at timestamptz NOT NULL,
22433
+ recorded_at timestamptz NOT NULL DEFAULT now(),
22434
+ updated_at timestamptz NOT NULL DEFAULT now(),
22435
+ UNIQUE (analytics_account_id, provider)
22436
+ )
22437
+ `,
22438
+ `
22439
+ CREATE INDEX IF NOT EXISTS account_payment_retention_records_provider_idx
22440
+ ON account_payment_retention_records (provider, account_deleted_at DESC)
22441
+ `,
22442
+ `
22443
+ CREATE TABLE IF NOT EXISTS account_payment_provider_events (
22444
+ provider_event_key text PRIMARY KEY,
22445
+ analytics_account_id uuid NOT NULL REFERENCES account_analytics_accounts(analytics_account_id),
22446
+ organization_id_hash text NOT NULL,
22447
+ provider text NOT NULL,
22448
+ provider_event_id text NOT NULL,
22449
+ provider_event_type text NOT NULL,
22450
+ processed_at timestamptz NOT NULL,
22451
+ account_deleted_at timestamptz NOT NULL,
22452
+ recorded_at timestamptz NOT NULL DEFAULT now()
22453
+ )
22454
+ `,
22455
+ `
22456
+ CREATE UNIQUE INDEX IF NOT EXISTS account_payment_provider_events_provider_event_key
22457
+ ON account_payment_provider_events (provider, provider_event_id)
22458
+ `
22459
+ ]
22116
22460
  })
22117
22461
  ];
22118
22462
 
@@ -24185,7 +24529,7 @@ async function listLocalIncidents(input, dependencies) {
24185
24529
  return true;
24186
24530
  }
24187
24531
  return incident.status === input.status;
24188
- }).filter((incident) => input.severity === void 0 ? true : incident.severity === input.severity).sort(sortIncidentsDescending);
24532
+ }).filter((incident) => input.severity === void 0 ? true : incident.severity === input.severity).filter((incident) => input.firstSeenAfter === void 0 ? true : incident.first_seen_at >= input.firstSeenAfter).sort(sortIncidentsDescending);
24189
24533
  const startIndex = input.cursor === void 0 ? 0 : incidents.findIndex((incident) => buildCursor(incident) === input.cursor) + 1;
24190
24534
  const pagedIncidents = input.limit === void 0 ? incidents.slice(startIndex) : incidents.slice(startIndex, startIndex + input.limit);
24191
24535
  const hasMore = input.limit !== void 0 && startIndex + input.limit < incidents.length;
@@ -26496,6 +26840,9 @@ function readIncidentListFilters(input) {
26496
26840
  if (typeof input["severity"] === "string") {
26497
26841
  requestInput.severity = input["severity"];
26498
26842
  }
26843
+ if (typeof input["firstSeenAfter"] === "string") {
26844
+ requestInput.firstSeenAfter = input["firstSeenAfter"];
26845
+ }
26499
26846
  if (typeof input["cursor"] === "string") {
26500
26847
  requestInput.cursor = input["cursor"];
26501
26848
  }
@@ -26516,6 +26863,7 @@ async function listAllCloudIncidents(input, api) {
26516
26863
  ...filters.service === void 0 ? {} : { service: filters.service },
26517
26864
  ...filters.status === void 0 ? {} : { status: filters.status },
26518
26865
  ...filters.severity === void 0 ? {} : { severity: filters.severity },
26866
+ ...filters.firstSeenAfter === void 0 ? {} : { firstSeenAfter: filters.firstSeenAfter },
26519
26867
  ...cursor === void 0 ? {} : { cursor }
26520
26868
  });
26521
26869
  incidents.push(...response.incidents.map((incident) => attachSourceToRecord(incident, "cloud")));
@@ -26577,7 +26925,8 @@ function createRetrievalMcpTools(api) {
26577
26925
  ...incidentFilters.environment === void 0 ? {} : { environment: incidentFilters.environment },
26578
26926
  ...incidentFilters.service === void 0 ? {} : { service: incidentFilters.service },
26579
26927
  ...incidentFilters.status === void 0 ? {} : { status: incidentFilters.status },
26580
- ...incidentFilters.severity === void 0 ? {} : { severity: incidentFilters.severity }
26928
+ ...incidentFilters.severity === void 0 ? {} : { severity: incidentFilters.severity },
26929
+ ...incidentFilters.firstSeenAfter === void 0 ? {} : { firstSeenAfter: incidentFilters.firstSeenAfter }
26581
26930
  });
26582
26931
  const cloudIncidents = await listAllCloudIncidents(input, {
26583
26932
  listIncidents: (requestInput2) => api.listIncidents(requestInput2)
@@ -26608,6 +26957,9 @@ function createRetrievalMcpTools(api) {
26608
26957
  if (incidentFilters.severity !== void 0) {
26609
26958
  requestInput.severity = incidentFilters.severity;
26610
26959
  }
26960
+ if (incidentFilters.firstSeenAfter !== void 0) {
26961
+ requestInput.firstSeenAfter = incidentFilters.firstSeenAfter;
26962
+ }
26611
26963
  if (incidentFilters.cursor !== void 0) {
26612
26964
  requestInput.cursor = incidentFilters.cursor;
26613
26965
  }
@@ -28808,7 +29160,7 @@ var zodToJsonSchema = (schema, options) => {
28808
29160
  var package_default = {
28809
29161
  name: "@debugbundle/mcp",
28810
29162
  mcpName: "com.debugbundle/mcp",
28811
- version: "1.3.0",
29163
+ version: "1.4.0",
28812
29164
  private: false,
28813
29165
  description: "Model Context Protocol server for DebugBundle",
28814
29166
  license: "AGPL-3.0-only",
@@ -28862,6 +29214,7 @@ var listIncidentsInputSchema = external_exports.object({
28862
29214
  service: external_exports.string().optional(),
28863
29215
  status: external_exports.string().optional(),
28864
29216
  severity: external_exports.string().optional(),
29217
+ firstSeenAfter: external_exports.string().optional(),
28865
29218
  cursor: external_exports.string().optional(),
28866
29219
  limit: external_exports.number().optional()
28867
29220
  });
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@debugbundle/mcp",
3
3
  "mcpName": "com.debugbundle/mcp",
4
- "version": "1.3.0",
4
+ "version": "1.4.0",
5
5
  "private": false,
6
6
  "description": "Model Context Protocol server for DebugBundle",
7
7
  "license": "AGPL-3.0-only",
package/server.json CHANGED
@@ -8,13 +8,13 @@
8
8
  "source": "github",
9
9
  "subfolder": "apps/mcp"
10
10
  },
11
- "version": "1.3.0",
11
+ "version": "1.4.0",
12
12
  "packages": [
13
13
  {
14
14
  "registryType": "npm",
15
15
  "registryBaseUrl": "https://registry.npmjs.org",
16
16
  "identifier": "@debugbundle/mcp",
17
- "version": "1.3.0",
17
+ "version": "1.4.0",
18
18
  "transport": {
19
19
  "type": "stdio"
20
20
  },