chrometools-mcp 3.1.4 → 3.1.6

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/CHANGELOG.md +20 -3
  2. package/README.md +35 -9
  3. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -2,12 +2,29 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## [3.1.6] - 2026-01-27
6
+
7
+ ### Fixed
8
+ - **Claude Code installation command** — Corrected `claude mcp add` syntax
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
11
+
12
+ ## [3.1.5] - 2026-01-27
13
+
14
+ ### Fixed
15
+ - **Cursor installation instructions** — Corrected to show proper mcpServers JSON format
16
+ - Changed to use `mcpServers` object wrapper (not individual server object)
17
+ - Added example showing how to add to existing MCP configuration
18
+ - Updated with correct JSON structure matching Cursor's MCP configuration format
19
+ - Settings → Cursor Settings → MCP (edit JSON directly)
20
+
5
21
  ## [3.1.4] - 2026-01-27
6
22
 
7
23
  ### Fixed
8
- - **Cursor installation instructions** — Corrected the setup process to use Cursor UI instead of manual JSON editing
9
- - Changed from Command Palette approach to Settings UI approach (Settings → Cursor Settings → MCP)
10
- - Added proper field names (Name, Type, Command) for the "Add New MCP Server" dialog
24
+ - **Cursor installation instructions** — Corrected to show JSON configuration format
25
+ - Changed from individual fields to complete JSON object
26
+ - Added proper JSON format with name, type, command, and args fields
27
+ - Settings → Cursor Settings → MCP → Add New MCP Server (paste JSON)
11
28
  - Added test instructions to verify installation in Cursor Agent mode
12
29
 
13
30
  ## [3.1.3] - 2026-01-27
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 chrometools-mcp
12
+ claude mcp add "npx -y chrometools-mcp"
13
13
  ```
14
14
 
15
15
  This command will automatically configure the MCP server in your Claude Code settings.
@@ -38,15 +38,41 @@ Add to your Claude Desktop configuration file:
38
38
  - Click on **Settings** (⚙️ icon or `Cmd + ,` / `Ctrl + ,`)
39
39
  - Navigate to **Cursor Settings** → **MCP**
40
40
 
41
- **Step 2:** Add New MCP Server
42
- - Click **"Add New MCP Server"** button
43
- - Fill in the fields:
44
- - **Name:** `chrometools-mcp` (or any name you prefer)
45
- - **Type:** Select `Command`
46
- - **Command:** `npx -y chrometools-mcp`
41
+ **Step 2:** Edit MCP Configuration
42
+ - You'll see the MCP configuration JSON editor
43
+ - Add `chrometools` to the `mcpServers` object:
47
44
 
48
- **Step 3:** Save and Refresh
49
- - Click **"Refresh"** to activate the MCP server
45
+ ```json
46
+ {
47
+ "mcpServers": {
48
+ "chrometools": {
49
+ "command": "npx",
50
+ "args": ["-y", "chrometools-mcp"]
51
+ }
52
+ }
53
+ }
54
+ ```
55
+
56
+ **If you already have other MCP servers configured, just add chrometools to the existing list:**
57
+
58
+ ```json
59
+ {
60
+ "mcpServers": {
61
+ "existing-server": {
62
+ "command": "npx",
63
+ "args": ["some-other-mcp"]
64
+ },
65
+ "chrometools": {
66
+ "command": "npx",
67
+ "args": ["-y", "chrometools-mcp"]
68
+ }
69
+ }
70
+ }
71
+ ```
72
+
73
+ **Step 3:** Save and Restart
74
+ - Save the configuration file
75
+ - Restart Cursor to apply changes
50
76
  - The chrometools-mcp tools will now be available in Cursor Agent
51
77
 
52
78
  **Step 4:** Test the Installation
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chrometools-mcp",
3
- "version": "3.1.4",
3
+ "version": "3.1.6",
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",