chrometools-mcp 3.1.2 → 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 +21 -0
  2. package/README.md +104 -22
  3. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -2,6 +2,27 @@
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
+
13
+ ## [3.1.3] - 2026-01-27
14
+
15
+ ### Changed
16
+ - **README.md installation section reorganization** — Improved installation documentation
17
+ - Moved Installation section to the top for better visibility
18
+ - Added Claude Code (CLI) installation with `claude mcp add chrometools-mcp` command
19
+ - Separated installation instructions by client type (Claude Code, Claude Desktop, Cursor, Antigravity, Other MCP Clients)
20
+ - Added detailed step-by-step instructions for Cursor IDE (Settings → Cursor Settings → MCP → Add New MCP Server)
21
+ - Added detailed step-by-step instructions for Google Antigravity (MCP Store → Manage → View raw config)
22
+ - Added configuration file paths for Claude Desktop (macOS/Linux/Windows)
23
+ - Added notes about Antigravity's 100-tool limit and optimal configuration
24
+ - Removed duplicate Installation/Usage sections
25
+
5
26
  ## [3.1.2] - 2026-01-26
6
27
 
7
28
  ### Added
package/README.md CHANGED
@@ -2,10 +2,113 @@
2
2
 
3
3
  MCP server for Chrome automation using Puppeteer with persistent browser sessions.
4
4
 
5
+ ## Installation
6
+
7
+ ### Claude Code (CLI)
8
+
9
+ The easiest way to install for Claude Code users:
10
+
11
+ ```bash
12
+ claude mcp add chrometools-mcp
13
+ ```
14
+
15
+ This command will automatically configure the MCP server in your Claude Code settings.
16
+
17
+ ### Claude Desktop
18
+
19
+ Add to your Claude Desktop configuration file:
20
+
21
+ **macOS/Linux:** `~/Library/Application Support/Claude/claude_desktop_config.json`
22
+ **Windows:** `%APPDATA%\Claude\claude_desktop_config.json`
23
+
24
+ ```json
25
+ {
26
+ "mcpServers": {
27
+ "chrometools": {
28
+ "command": "npx",
29
+ "args": ["-y", "chrometools-mcp"]
30
+ }
31
+ }
32
+ }
33
+ ```
34
+
35
+ ### Cursor
36
+
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"
56
+
57
+ ### Google Antigravity
58
+
59
+ **Step 1:** Open Agent session in Antigravity
60
+
61
+ **Step 2:** Click the "**…**" dropdown at the top of the editor's side panel
62
+
63
+ **Step 3:** Select **"MCP Servers"** to open the MCP Store
64
+
65
+ **Step 4:** Click **"Manage MCP Servers"** at the top of the MCP Store
66
+
67
+ **Step 5:** Click **"View raw config"** in the main tab
68
+
69
+ **Step 6:** Edit `mcp_config.json` (located in `~/.gemini/antigravity/` directory):
70
+
71
+ ```json
72
+ {
73
+ "mcpServers": {
74
+ "chrometools": {
75
+ "command": "npx",
76
+ "args": ["-y", "chrometools-mcp"]
77
+ }
78
+ }
79
+ }
80
+ ```
81
+
82
+ **Step 7:** Save the file and restart Antigravity
83
+
84
+ **Note:** Antigravity has a limit of ~100 tools per session. If you have many MCP servers installed, consider reducing the number of active tools to ~25 for optimal performance.
85
+
86
+ ### Other MCP Clients
87
+
88
+ For Cline, Continue, or other MCP-compatible clients, add to your MCP configuration:
89
+
90
+ ```json
91
+ {
92
+ "mcpServers": {
93
+ "chrometools": {
94
+ "command": "npx",
95
+ "args": ["-y", "chrometools-mcp"]
96
+ }
97
+ }
98
+ }
99
+ ```
100
+
101
+ ### Manual Installation
102
+
103
+ You can also run directly without configuration:
104
+
105
+ ```bash
106
+ npx -y chrometools-mcp
107
+ ```
108
+
5
109
  ## Table of Contents
6
110
 
7
111
  - [Installation](#installation)
8
- - [Usage](#usage)
9
112
  - [AI Optimization Features](#ai-optimization-features) ⭐ **NEW**
10
113
  - [Scenario Recorder](#scenario-recorder) ⭐ **NEW** - Visual UI-based recording with smart optimization
11
114
  - [Available Tools](#available-tools) - **46+ Tools Total**
@@ -25,27 +128,6 @@ MCP server for Chrome automation using Puppeteer with persistent browser session
25
128
  - [Features](#features)
26
129
  - [Architecture](#architecture)
27
130
 
28
- ## Installation
29
-
30
- ```bash
31
- npx -y chrometools-mcp
32
- ```
33
-
34
- ## Usage
35
-
36
- Add to your MCP client configuration (e.g., Claude Desktop):
37
-
38
- ```json
39
- {
40
- "mcpServers": {
41
- "chrometools": {
42
- "command": "npx",
43
- "args": ["-y", "chrometools-mcp"]
44
- }
45
- }
46
- }
47
- ```
48
-
49
131
  ## AI Optimization Features
50
132
 
51
133
  ⭐ **NEW**: Dramatically reduce AI agent request cycles with intelligent element finding and page analysis.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chrometools-mcp",
3
- "version": "3.1.2",
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",