chrome-devtools-mcp 0.16.0 → 0.17.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 (29) hide show
  1. package/README.md +56 -9
  2. package/build/src/DevtoolsUtils.js +113 -0
  3. package/build/src/McpContext.js +3 -0
  4. package/build/src/McpResponse.js +1 -8
  5. package/build/src/PageCollector.js +4 -9
  6. package/build/src/cli.js +9 -0
  7. package/build/src/formatters/ConsoleFormatter.js +144 -72
  8. package/build/src/main.js +8 -4
  9. package/build/src/telemetry/{clearcut-logger.js → ClearcutLogger.js} +1 -1
  10. package/build/src/telemetry/watchdog/main.js +1 -1
  11. package/build/src/third_party/THIRD_PARTY_NOTICES +5 -5
  12. package/build/src/third_party/bundled-packages.json +3 -3
  13. package/build/src/third_party/devtools-formatter-worker.js +0 -2
  14. package/build/src/third_party/index.js +1424 -1311
  15. package/build/src/third_party/issue-descriptions/connectionAllowlistInvalidAllowlistItemType.md +12 -0
  16. package/build/src/third_party/issue-descriptions/connectionAllowlistInvalidHeader.md +12 -0
  17. package/build/src/third_party/issue-descriptions/connectionAllowlistInvalidUrlPattern.md +8 -0
  18. package/build/src/third_party/issue-descriptions/connectionAllowlistItemNotInnerList.md +12 -0
  19. package/build/src/third_party/issue-descriptions/connectionAllowlistMoreThanOneList.md +7 -0
  20. package/build/src/third_party/issue-descriptions/connectionAllowlistReportingEndpointNotToken.md +10 -0
  21. package/build/src/tools/performance.js +31 -1
  22. package/package.json +5 -4
  23. package/build/src/third_party/issue-descriptions/federatedAuthRequestClientMetadataHttpNotFound.md +0 -1
  24. package/build/src/third_party/issue-descriptions/federatedAuthRequestClientMetadataInvalidResponse.md +0 -1
  25. package/build/src/third_party/issue-descriptions/federatedAuthRequestClientMetadataNoResponse.md +0 -1
  26. /package/build/src/telemetry/{watchdog-client.js → WatchdogClient.js} +0 -0
  27. /package/build/src/telemetry/{flag-utils.js → flagUtils.js} +0 -0
  28. /package/build/src/telemetry/{metric-utils.js → metricUtils.js} +0 -0
  29. /package/build/src/telemetry/watchdog/{clearcut-sender.js → ClearcutSender.js} +0 -0
@@ -422,7 +422,7 @@ SOFTWARE.
422
422
 
423
423
  Name: @modelcontextprotocol/sdk
424
424
  URL: https://modelcontextprotocol.io
425
- Version: 1.25.3
425
+ Version: 1.26.0
426
426
  License: MIT
427
427
 
428
428
  MIT License
@@ -452,7 +452,7 @@ SOFTWARE.
452
452
 
453
453
  Name: zod-to-json-schema
454
454
  URL: https://github.com/StefanTerdell/zod-to-json-schema
455
- Version: 3.25.0
455
+ Version: 3.25.1
456
456
  License: ISC
457
457
 
458
458
  ISC License
@@ -636,21 +636,21 @@ SOFTWARE.
636
636
 
637
637
  Name: puppeteer-core
638
638
  URL: https://github.com/puppeteer/puppeteer/tree/main/packages/puppeteer-core
639
- Version: 24.36.1
639
+ Version: 24.37.3
640
640
  License: Apache-2.0
641
641
 
642
642
  -------------------- DEPENDENCY DIVIDER --------------------
643
643
 
644
644
  Name: @puppeteer/browsers
645
645
  URL: https://github.com/puppeteer/puppeteer/tree/main/packages/browsers
646
- Version: 2.11.2
646
+ Version: 2.12.1
647
647
  License: Apache-2.0
648
648
 
649
649
  -------------------- DEPENDENCY DIVIDER --------------------
650
650
 
651
651
  Name: semver
652
652
  URL: git+https://github.com/npm/node-semver.git
653
- Version: 7.7.3
653
+ Version: 7.7.4
654
654
  License: ISC
655
655
 
656
656
  The ISC License
@@ -1,8 +1,8 @@
1
1
  {
2
- "@modelcontextprotocol/sdk": "1.25.3",
3
- "chrome-devtools-frontend": "1.0.1576915",
2
+ "@modelcontextprotocol/sdk": "1.26.0",
3
+ "chrome-devtools-frontend": "1.0.1583146",
4
4
  "core-js": "3.48.0",
5
5
  "debug": "4.4.3",
6
6
  "yargs": "18.0.0",
7
- "puppeteer-core": "24.36.1"
7
+ "puppeteer-core": "24.37.3"
8
8
  }
@@ -12447,7 +12447,6 @@ const UIStrings$2 = {
12447
12447
  networkPanel: 'Network panel',
12448
12448
  requestConditionsDrawer: 'Request conditions drawer',
12449
12449
  applicationPanel: 'Application panel',
12450
- securityPanel: 'Security panel',
12451
12450
  sourcesPanel: 'Sources panel',
12452
12451
  timelinePanel: 'Performance panel',
12453
12452
  memoryInspectorPanel: 'Memory inspector panel',
@@ -12467,7 +12466,6 @@ const i18nLazyString$1 = getLazilyComputedLocalizedString.bind(undefined, str_$2
12467
12466
  TIMELINE_PANEL: i18nLazyString$1(UIStrings$2.timelinePanel),
12468
12467
  APPLICATION_PANEL: i18nLazyString$1(UIStrings$2.applicationPanel),
12469
12468
  SOURCES_PANEL: i18nLazyString$1(UIStrings$2.sourcesPanel),
12470
- SECURITY_PANEL: i18nLazyString$1(UIStrings$2.securityPanel),
12471
12469
  MEMORY_INSPECTOR_PANEL: i18nLazyString$1(UIStrings$2.memoryInspectorPanel),
12472
12470
  ANIMATIONS_PANEL: i18nLazyString$1(UIStrings$2.animationsPanel),
12473
12471
  });