chrometools-mcp 3.1.6 → 3.1.7
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/CHANGELOG.md +9 -3
- package/README.md +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,12 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [3.1.7] - 2026-01-27
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
- **Claude Code installation command** — Corrected to proper `claude mcp add` syntax
|
|
9
|
+
- Fixed to use: `claude mcp add chrometools -- npx -y chrometools-mcp`
|
|
10
|
+
- Format: `claude mcp add <name> -- <command> [args...]`
|
|
11
|
+
- Added `--scope user` option for global installation
|
|
12
|
+
|
|
5
13
|
## [3.1.6] - 2026-01-27
|
|
6
14
|
|
|
7
15
|
### Fixed
|
|
8
|
-
- **Claude Code installation command** —
|
|
9
|
-
- Changed from `claude mcp add chrometools-mcp` to `claude mcp add "npx -y chrometools-mcp"`
|
|
10
|
-
- The command requires full command string, not just package name
|
|
16
|
+
- **Claude Code installation command** — Incorrect syntax attempt
|
|
11
17
|
|
|
12
18
|
## [3.1.5] - 2026-01-27
|
|
13
19
|
|
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@ MCP server for Chrome automation using Puppeteer with persistent browser session
|
|
|
9
9
|
The easiest way to install for Claude Code users:
|
|
10
10
|
|
|
11
11
|
```bash
|
|
12
|
-
claude mcp add
|
|
12
|
+
claude mcp add chrometools -- npx -y chrometools-mcp
|
|
13
13
|
```
|
|
14
14
|
|
|
15
15
|
This command will automatically configure the MCP server in your Claude Code settings.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chrometools-mcp",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.7",
|
|
4
4
|
"description": "MCP (Model Context Protocol) server for Chrome automation using Puppeteer. Persistent browser sessions, UI framework detection (MUI, Ant Design, etc.), Page Object support, visual testing, Figma comparison. Works seamlessly in WSL, Linux, macOS, and Windows.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.js",
|