@customaise/mcp 1.1.0 → 1.1.1
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.
- package/README.md +9 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -133,6 +133,15 @@ Users can visually select elements in the browser, and the extension automatical
|
|
|
133
133
|
└── ...
|
|
134
134
|
```
|
|
135
135
|
|
|
136
|
+
> [!NOTE]
|
|
137
|
+
> **Where are the files saved?**
|
|
138
|
+
> The MCP server writes the `.customaise` folder to its current working directory (usually your open project root in Cursor or Windsurf).
|
|
139
|
+
> If you are using a global IDE like Claude Desktop, it will default to your Home directory (`~/.customaise`). To force the files to save in a specific project folder, add the `CUSTOMAISE_WORKSPACE` environment variable to your MCP config:
|
|
140
|
+
>
|
|
141
|
+
> ```json
|
|
142
|
+
> "env": { "CUSTOMAISE_WORKSPACE": "/absolute/path/to/your/project" }
|
|
143
|
+
> ```
|
|
144
|
+
|
|
136
145
|
Use `get_selected_elements` to retrieve selections programmatically, or read the auto-pushed `.dom.md` files directly from the workspace.
|
|
137
146
|
|
|
138
147
|
Each selection includes **bulletproof tiered selectors** (stable IDs → data attributes → ARIA → semantic classes → structural positioning) for resilient element targeting that survives page updates.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@customaise/mcp",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "MCP server that connects AI coding agents (Cursor, Claude Code, Codex, Windsurf, Kiro, Antigravity) to the Customaise Chrome extension for userscript management and browser automation.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|