browser-devtools-mcp 0.2.3 → 0.2.4

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 (2) hide show
  1. package/README.md +6 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -2017,13 +2017,13 @@ Browser DevTools MCP is available as a plugin for various AI coding assistants.
2017
2017
 
2018
2018
  ### Claude Code
2019
2019
 
2020
- A dedicated Claude Code plugin is available with slash commands, skills, and agents for browser automation and testing.
2020
+ A dedicated Claude Code plugin is available with slash commands, skills, and agents for browser automation and testing. The plugin lives in a [separate repository](https://github.com/serkan-ozal/browser-devtools-claude).
2021
2021
 
2022
2022
  #### Installation
2023
2023
 
2024
2024
  ```bash
2025
2025
  # Add the marketplace
2026
- /plugin marketplace add https://github.com/serkan-ozal/browser-devtools-mcp
2026
+ /plugin marketplace add https://github.com/serkan-ozal/browser-devtools-claude
2027
2027
 
2028
2028
  # Install the plugin
2029
2029
  /plugin install browser-devtools-mcp@browser-devtools
@@ -2042,9 +2042,10 @@ A dedicated Claude Code plugin is available with slash commands, skills, and age
2042
2042
  - Design: `/figma`
2043
2043
  - Execution: `/run-js`, `/sandbox`
2044
2044
 
2045
- **Skills (5 skills):**
2045
+ **Skills (6 skills):**
2046
2046
  - `browser-testing` - General browser test capabilities
2047
2047
  - `web-debugging` - Console, network, JS debugging
2048
+ - `node-debugging` - Node.js backend debugging (tracepoints, logpoints, run_js-in-node)
2048
2049
  - `performance-audit` - Web Vitals and performance analysis
2049
2050
  - `visual-testing` - Visual testing and responsive design
2050
2051
  - `observability` - Distributed tracing and monitoring
@@ -2058,7 +2059,7 @@ A dedicated Claude Code plugin is available with slash commands, skills, and age
2058
2059
 
2059
2060
  #### Configuration
2060
2061
 
2061
- The plugin can be configured via environment variables. See [CONFIG.md](plugins/claude/CONFIG.md) for all available options.
2062
+ The plugin can be configured via environment variables. See [CONFIG.md](https://github.com/serkan-ozal/browser-devtools-claude/blob/master/CONFIG.md) for all available options.
2062
2063
 
2063
2064
  Example configuration in `~/.claude/settings.json`:
2064
2065
 
@@ -2069,6 +2070,7 @@ Example configuration in `~/.claude/settings.json`:
2069
2070
  "command": "npx",
2070
2071
  "args": ["-y", "browser-devtools-mcp@latest"],
2071
2072
  "env": {
2073
+ "PLATFORM": "browser",
2072
2074
  "BROWSER_HEADLESS_ENABLE": "false"
2073
2075
  }
2074
2076
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "browser-devtools-mcp",
3
- "version": "0.2.3",
3
+ "version": "0.2.4",
4
4
  "description": "MCP Server for Browser Dev Tools",
5
5
  "private": false,
6
6
  "type": "module",