chrometools-mcp 3.1.2 → 3.1.3

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 -0
  2. package/README.md +107 -22
  3. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -2,6 +2,19 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## [3.1.3] - 2026-01-27
6
+
7
+ ### Changed
8
+ - **README.md installation section reorganization** — Improved installation documentation
9
+ - Moved Installation section to the top for better visibility
10
+ - Added Claude Code (CLI) installation with `claude mcp add chrometools-mcp` command
11
+ - 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)
13
+ - Added detailed step-by-step instructions for Google Antigravity (MCP Store → Manage → View raw config)
14
+ - Added configuration file paths for Claude Desktop (macOS/Linux/Windows)
15
+ - Added notes about Antigravity's 100-tool limit and optimal configuration
16
+ - Removed duplicate Installation/Usage sections
17
+
5
18
  ## [3.1.2] - 2026-01-26
6
19
 
7
20
  ### Added
package/README.md CHANGED
@@ -2,10 +2,116 @@
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
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
59
+
60
+ ### Google Antigravity
61
+
62
+ **Step 1:** Open Agent session in Antigravity
63
+
64
+ **Step 2:** Click the "**…**" dropdown at the top of the editor's side panel
65
+
66
+ **Step 3:** Select **"MCP Servers"** to open the MCP Store
67
+
68
+ **Step 4:** Click **"Manage MCP Servers"** at the top of the MCP Store
69
+
70
+ **Step 5:** Click **"View raw config"** in the main tab
71
+
72
+ **Step 6:** Edit `mcp_config.json` (located in `~/.gemini/antigravity/` directory):
73
+
74
+ ```json
75
+ {
76
+ "mcpServers": {
77
+ "chrometools": {
78
+ "command": "npx",
79
+ "args": ["-y", "chrometools-mcp"]
80
+ }
81
+ }
82
+ }
83
+ ```
84
+
85
+ **Step 7:** Save the file and restart Antigravity
86
+
87
+ **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.
88
+
89
+ ### Other MCP Clients
90
+
91
+ For Cline, Continue, or other MCP-compatible clients, add to your MCP configuration:
92
+
93
+ ```json
94
+ {
95
+ "mcpServers": {
96
+ "chrometools": {
97
+ "command": "npx",
98
+ "args": ["-y", "chrometools-mcp"]
99
+ }
100
+ }
101
+ }
102
+ ```
103
+
104
+ ### Manual Installation
105
+
106
+ You can also run directly without configuration:
107
+
108
+ ```bash
109
+ npx -y chrometools-mcp
110
+ ```
111
+
5
112
  ## Table of Contents
6
113
 
7
114
  - [Installation](#installation)
8
- - [Usage](#usage)
9
115
  - [AI Optimization Features](#ai-optimization-features) ⭐ **NEW**
10
116
  - [Scenario Recorder](#scenario-recorder) ⭐ **NEW** - Visual UI-based recording with smart optimization
11
117
  - [Available Tools](#available-tools) - **46+ Tools Total**
@@ -25,27 +131,6 @@ MCP server for Chrome automation using Puppeteer with persistent browser session
25
131
  - [Features](#features)
26
132
  - [Architecture](#architecture)
27
133
 
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
134
  ## AI Optimization Features
50
135
 
51
136
  ⭐ **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.3",
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",