browser-devtools-mcp 0.2.0 → 0.2.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 (3) hide show
  1. package/README.md +1 -12
  2. package/SECURITY.md +9 -0
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -994,18 +994,7 @@ Install as an AI agent skill:
994
994
  npx skills add serkan-ozal/browser-devtools-skills
995
995
  ```
996
996
 
997
- **Available Skills:**
998
-
999
- | Skill | Description |
1000
- |-------|-------------|
1001
- | `browser-devtools-cli` | Complete CLI reference for browser automation |
1002
- | `browser-testing` | General browser testing and automation |
1003
- | `web-debugging` | Console, network, and JavaScript debugging |
1004
- | `performance-audit` | Web Vitals and performance analysis |
1005
- | `visual-testing` | Visual testing and responsive design |
1006
- | `observability` | Distributed tracing and monitoring |
1007
-
1008
- These skill files are optimized for AI agent consumption with non-interactive command examples, JSON output flags, and session-based workflow patterns.
997
+ For the full list of available skills and documentation, see the [browser-devtools-skills](https://github.com/serkan-ozal/browser-devtools-skills) repository.
1009
998
 
1010
999
  ## Configuration
1011
1000
 
package/SECURITY.md CHANGED
@@ -4,6 +4,7 @@
4
4
 
5
5
  | Version | Supported |
6
6
  | ------- | ------------------ |
7
+ | 0.2.x | :white_check_mark: |
7
8
  | 0.1.x | :white_check_mark: |
8
9
 
9
10
  ## Reporting a Vulnerability
@@ -55,6 +56,14 @@ Browser DevTools MCP provides powerful browser automation capabilities. Users sh
55
56
  - PDFs preserve full page content
56
57
  - Be mindful of what pages are captured
57
58
 
59
+ 5. **Debug Tools**: Non-blocking debugging capabilities capture runtime state
60
+ - Tracepoints capture call stack and local variables (may include sensitive data)
61
+ - Logpoints evaluate expressions in page context
62
+ - Exception snapshots capture error state and stack traces
63
+ - Network monitors (netpoints) capture request/response bodies
64
+ - DOM monitors (dompoints) capture element mutations
65
+ - Snapshots are stored in memory and cleared on session end
66
+
58
67
  ### API Keys and Secrets
59
68
 
60
69
  The following environment variables may contain sensitive information:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "browser-devtools-mcp",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "MCP Server for Browser Dev Tools",
5
5
  "private": false,
6
6
  "type": "module",