browser-devtools-mcp 0.2.0 → 0.2.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 +3 -15
- package/SECURITY.md +9 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
<p align="center">
|
|
2
|
-
<img src="
|
|
2
|
+
<img src="https://browser-devtools.com/assets/icons/icon.svg" alt="Browser DevTools MCP" width="128" height="128">
|
|
3
3
|
<br>
|
|
4
4
|
<strong style="font-size: 2em;">Browser DevTools MCP</strong>
|
|
5
5
|
</p>
|
|
6
6
|
|
|
7
7
|
<p align="center">
|
|
8
|
-
<a href="https://github.com/serkan-ozal/browser-devtools-mcp/actions/workflows/build.yml"><img src="https://github.com/serkan-ozal/browser-devtools-mcp/actions/workflows/build.yml/badge.svg" alt="Build Status"></a>
|
|
9
8
|
<a href="https://www.npmjs.com/package/browser-devtools-mcp"><img src="https://badge.fury.io/js/browser-devtools-mcp.svg" alt="NPM Version"></a>
|
|
10
|
-
<a href="https://
|
|
9
|
+
<a href="https://browser-devtools.com"><img src="https://img.shields.io/badge/license-Elastic--2.0-blue" alt="License"></a>
|
|
11
10
|
</p>
|
|
12
11
|
|
|
13
12
|
<p align="center">
|
|
@@ -994,18 +993,7 @@ Install as an AI agent skill:
|
|
|
994
993
|
npx skills add serkan-ozal/browser-devtools-skills
|
|
995
994
|
```
|
|
996
995
|
|
|
997
|
-
|
|
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.
|
|
996
|
+
For the full list of available skills and documentation, see the [browser-devtools-skills](https://github.com/serkan-ozal/browser-devtools-skills) repository.
|
|
1009
997
|
|
|
1010
998
|
## Configuration
|
|
1011
999
|
|
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:
|