chrometools-mcp 3.1.3 → 3.1.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 (3) hide show
  1. package/CHANGELOG.md +9 -1
  2. package/README.md +19 -22
  3. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -2,6 +2,14 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## [3.1.4] - 2026-01-27
6
+
7
+ ### 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
11
+ - Added test instructions to verify installation in Cursor Agent mode
12
+
5
13
  ## [3.1.3] - 2026-01-27
6
14
 
7
15
  ### Changed
@@ -9,7 +17,7 @@ All notable changes to this project will be documented in this file.
9
17
  - Moved Installation section to the top for better visibility
10
18
  - Added Claude Code (CLI) installation with `claude mcp add chrometools-mcp` command
11
19
  - 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)
20
+ - Added detailed step-by-step instructions for Cursor IDE (Settings → Cursor Settings MCP → Add New MCP Server)
13
21
  - Added detailed step-by-step instructions for Google Antigravity (MCP Store → Manage → View raw config)
14
22
  - Added configuration file paths for Claude Desktop (macOS/Linux/Windows)
15
23
  - Added notes about Antigravity's 100-tool limit and optimal configuration
package/README.md CHANGED
@@ -34,28 +34,25 @@ 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"**
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
44
-
45
- **Step 3:** Add chrometools-mcp configuration:
46
-
47
- ```json
48
- {
49
- "mcpServers": {
50
- "chrometools": {
51
- "command": "npx",
52
- "args": ["-y", "chrometools-mcp"]
53
- }
54
- }
55
- }
56
- ```
57
-
58
- **Step 4:** Restart Cursor to apply changes
37
+ **Step 1:** Open MCP Settings in Cursor
38
+ - Click on **Settings** (⚙️ icon or `Cmd + ,` / `Ctrl + ,`)
39
+ - Navigate to **Cursor Settings** **MCP**
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
50
+ - The chrometools-mcp tools will now be available in Cursor Agent
51
+
52
+ **Step 4:** Test the Installation
53
+ - Open Cursor Chat
54
+ - Select **Agent** mode
55
+ - Try a command like: "Open browser and navigate to google.com"
59
56
 
60
57
  ### Google Antigravity
61
58
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chrometools-mcp",
3
- "version": "3.1.3",
3
+ "version": "3.1.4",
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",