chrometools-mcp 3.1.3 → 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 +19 -1
  2. package/README.md +31 -8
  3. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -2,6 +2,24 @@
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
+
14
+ ## [3.1.4] - 2026-01-27
15
+
16
+ ### Fixed
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)
21
+ - Added test instructions to verify installation in Cursor Agent mode
22
+
5
23
  ## [3.1.3] - 2026-01-27
6
24
 
7
25
  ### Changed
@@ -9,7 +27,7 @@ All notable changes to this project will be documented in this file.
9
27
  - Moved Installation section to the top for better visibility
10
28
  - Added Claude Code (CLI) installation with `claude mcp add chrometools-mcp` command
11
29
  - Separated installation instructions by client type (Claude Code, Claude Desktop, Cursor, Antigravity, Other MCP Clients)
12
- - Added detailed step-by-step instructions for Cursor IDE (MCP Settings via Command Palette)
30
+ - Added detailed step-by-step instructions for Cursor IDE (Settings → Cursor Settings MCP → Add New MCP Server)
13
31
  - Added detailed step-by-step instructions for Google Antigravity (MCP Store → Manage → View raw config)
14
32
  - Added configuration file paths for Claude Desktop (macOS/Linux/Windows)
15
33
  - Added notes about Antigravity's 100-tool limit and optimal configuration
package/README.md CHANGED
@@ -34,19 +34,34 @@ Add to your Claude Desktop configuration file:
34
34
 
35
35
  ### Cursor
36
36
 
37
- **Step 1:** Open MCP Settings
38
- - Press `Cmd + Shift + P` (Mac) or `Ctrl + Shift + P` (Windows/Linux)
39
- - Search for "MCP" and select **"View: Open MCP Settings"**
37
+ **Step 1:** Open MCP Settings in Cursor
38
+ - Click on **Settings** (⚙️ icon or `Cmd + ,` / `Ctrl + ,`)
39
+ - Navigate to **Cursor Settings** **MCP**
40
40
 
41
- **Step 2:** Choose configuration scope:
42
- - **Global** (all projects): Edit `~/.cursor/mcp.json`
43
- - **Project-specific**: Create `.cursor/mcp.json` in your project root
41
+ **Step 2:** Edit MCP Configuration
42
+ - You'll see the MCP configuration JSON editor
43
+ - Add `chrometools` to the `mcpServers` object:
44
44
 
45
- **Step 3:** Add chrometools-mcp configuration:
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:**
46
57
 
47
58
  ```json
48
59
  {
49
60
  "mcpServers": {
61
+ "existing-server": {
62
+ "command": "npx",
63
+ "args": ["some-other-mcp"]
64
+ },
50
65
  "chrometools": {
51
66
  "command": "npx",
52
67
  "args": ["-y", "chrometools-mcp"]
@@ -55,7 +70,15 @@ Add to your Claude Desktop configuration file:
55
70
  }
56
71
  ```
57
72
 
58
- **Step 4:** Restart Cursor to apply changes
73
+ **Step 3:** Save and Restart
74
+ - Save the configuration file
75
+ - Restart Cursor to apply changes
76
+ - The chrometools-mcp tools will now be available in Cursor Agent
77
+
78
+ **Step 4:** Test the Installation
79
+ - Open Cursor Chat
80
+ - Select **Agent** mode
81
+ - Try a command like: "Open browser and navigate to google.com"
59
82
 
60
83
  ### Google Antigravity
61
84
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chrometools-mcp",
3
- "version": "3.1.3",
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",