chrometools-mcp 3.1.4 → 3.1.5

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 +13 -3
  2. package/README.md +35 -9
  3. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -2,12 +2,22 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## [3.1.5] - 2026-01-27
6
+
7
+ ### Fixed
8
+ - **Cursor installation instructions** — Corrected to show proper mcpServers JSON format
9
+ - Changed to use `mcpServers` object wrapper (not individual server object)
10
+ - Added example showing how to add to existing MCP configuration
11
+ - Updated with correct JSON structure matching Cursor's MCP configuration format
12
+ - Settings → Cursor Settings → MCP (edit JSON directly)
13
+
5
14
  ## [3.1.4] - 2026-01-27
6
15
 
7
16
  ### 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
17
+ - **Cursor installation instructions** — Corrected to show JSON configuration format
18
+ - Changed from individual fields to complete JSON object
19
+ - Added proper JSON format with name, type, command, and args fields
20
+ - Settings → Cursor Settings → MCP → Add New MCP Server (paste JSON)
11
21
  - Added test instructions to verify installation in Cursor Agent mode
12
22
 
13
23
  ## [3.1.3] - 2026-01-27
package/README.md CHANGED
@@ -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`
47
-
48
- **Step 3:** Save and Refresh
49
- - Click **"Refresh"** to activate the MCP server
41
+ **Step 2:** Edit MCP Configuration
42
+ - You'll see the MCP configuration JSON editor
43
+ - Add `chrometools` to the `mcpServers` object:
44
+
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.5",
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",