You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Improve README badges and Option+Click emphasis, fix release workflow
- Add npm version, chrome extension, and license badges to README
- Emphasize Option+Click usage with backticks throughout README
- Fix release workflow to prevent README from being committed:
- Move README copy to right before npm publish
- Add cleanup step to remove copied README after publish
- Add automatic manifest version bumping in release workflow
- Create bump-manifest script for chrome extension
- Remove copied server README from git tracking
- Remove redundant enabled config check in chrome extension background
MCP Pointer is a *local* tool combining an MCP Server with a Chrome Extension:
11
14
12
15
1.**🖥️ MCP Server** (Node.js package) - Bridges between the browser and AI tools via the Model Context Protocol
13
-
2.**🌐 Chrome Extension** - Captures DOM element selections in the browser using Option+Click
16
+
2.**🌐 Chrome Extension** - Captures DOM element selections in the browser using `Option+Click`
14
17
15
18
The extension lets you visually select DOM elements in the browser, and the MCP server makes this **textual context** available to agentic coding tools like Claude Code, Cursor, and Windsurf through standardized MCP tools.
16
19
17
20
## ✨ Features
18
21
19
-
- 🎯 **Option+Click Selection** - Simply hold Option (Alt on Windows) and click any element
22
+
- 🎯 **`Option+Click` Selection** - Simply hold `Option` (Alt on Windows) and click any element
20
23
- 📋 **Complete Element Data** - Text content, CSS classes, HTML attributes, positioning, and styling
21
24
- ⚛️ **React Component Detection** - Component names and source files via Fiber (experimental)
22
25
- 🔗 **WebSocket Connection** - Real-time communication between browser and AI tools
@@ -26,7 +29,7 @@ The extension lets you visually select DOM elements in the browser, and the MCP
See MCP Pointer in action: Option+Click any element in your browser, then ask your agentic coding tool about it (in this example, Claude Code). The AI gets complete textual context about the selected DOM element including CSS properties, url, selector, and more.
32
+
See MCP Pointer in action: `Option+Click` any element in your browser, then ask your agentic coding tool about it (in this example, Claude Code). The AI gets complete textual context about the selected DOM element including CSS properties, url, selector, and more.
30
33
31
34
## 🚀 Getting Started
32
35
@@ -46,6 +49,8 @@ npx -y @mcp-pointer/server config manual # Shows manual configuration for ot
46
49
47
50
> **Optional:** You can install globally with `npm install -g @mcp-pointer/server` to use `mcp-pointer` instead of `npx -y @mcp-pointer/server`
48
51
52
+
After configuration, **restart your coding tool** to load the MCP connection.
53
+
49
54
### 2. Install Chrome Extension
50
55
51
56
**Option A: Download from Releases (Recommended)**
@@ -56,18 +61,20 @@ npx -y @mcp-pointer/server config manual # Shows manual configuration for ot
0 commit comments