
Research
/Security News
Mini Shai-Hulud Campaign Hits Red Hat Cloud Services npm Packages
A mini Shai-Hulud campaign compromised Red Hat Cloud Services npm packages to steal developer and CI/CD secrets during installation.
@customaise/mcp
Advanced tools
MCP server bridging AI coding agents (Cursor, Claude Code, Codex, Windsurf, Kiro, Antigravity) to the Customaise Chrome extension. 18 tools: UserScripts, AgentScripts, WebMCP calls with HITL consent, visual DOM targeting, tab control.
MCP server that connects AI coding agents to the Customaise Chrome extension. Manage UserScripts, build AgentScripts, call WebMCP tools inside the user's signed-in browser session, select DOM elements visually, and drive tabs directly from your IDE.
18 tools, 5 resources, WebSocket bridge between your IDE and a real Chrome session.
AI Agent ←(stdio)→ MCP Server ←(WebSocket)→ Customaise Extension
Install the Customaise Chrome extension and enable MCP Bridge in Settings.
Cursor (.cursor/mcp.json):
{
"mcpServers": {
"customaise": {
"command": "npx",
"args": ["-y", "@customaise/mcp"]
}
}
}
Claude Desktop (claude_desktop_config.json):
{
"mcpServers": {
"customaise": {
"command": "npx",
"args": ["-y", "@customaise/mcp"]
}
}
}
Windsurf (.windsurf/mcp.json):
{
"mcpServers": {
"customaise": {
"command": "npx",
"args": ["-y", "@customaise/mcp"]
}
}
}
Kiro (.kiro/mcp.json):
{
"mcpServers": {
"customaise": {
"command": "npx",
"args": ["-y", "@customaise/mcp"]
}
}
}
Codex (~/.codex/config.toml):
[mcp_servers.customaise]
command = "npx"
args = ["-y", "@customaise/mcp"]
Antigravity (mcp_config.json):
{
"mcpServers": {
"customaise": {
"command": "npx",
"args": ["-y", "@customaise/mcp"]
}
}
}
Your agent can now read and edit UserScripts, build AgentScripts that expose WebMCP tools to it, select DOM elements visually, inspect the console, and take screenshots of the live tab.
| Tool | Description |
|---|---|
list_scripts | List every script (UserScripts and AgentScripts) managed by the extension |
import_script | Pull a script to a local file for editing |
export_script | Push a local file to Customaise (validates and installs) |
delete_script | Permanently delete a script |
toggle_script | Enable or disable a script |
| Tool | Description |
|---|---|
get_page_context | DOM snapshot of the current page |
get_console_context | Console logs, errors, and GM_log output |
list_tabs | List all open browser tabs |
| Tool | Description |
|---|---|
open_tab | Open a new tab at a given URL |
close_tab | Close a tab by ID |
focus_tab | Switch focus to a tab by ID |
reload_tab | Reload a tab to re-inject scripts |
| Tool | Description |
|---|---|
get_selected_elements | Get the DOM elements the user has visually selected, with bulletproof selectors and screenshots |
take_screenshot | Capture any tab (not just the visible one) as a viewport or full-page image; optionally highlight specific elements |
| Tool | Description |
|---|---|
list_webmcp_tools | List the WebMCP tools currently registered on a tab by AgentScripts |
call_webmcp_tool | Call a WebMCP tool; prompt-gated tools block on user consent (see below) |
| Tool | Description |
|---|---|
toggle_ui | Show or hide the Customaise UI overlay |
sync_scripts | Bulk export all scripts to a local directory |
Five resources any connected agent can read via resources/read. The two conventions handbooks define exactly how Customaise expects UserScripts and AgentScripts to be written. Agents should read the relevant handbook before touching a script.
| URI | Description |
|---|---|
customaise://scripts | Live JSON list of every script the extension manages (ID, name, enabled state, match patterns, shared flag) |
customaise://scripts/{scriptId} | Full source and metadata for a specific script |
customaise://conventions | Points at the right handbook for the script type you're working on |
customaise://userscript-conventions | Full UserScript reference: file structure, IIFE pattern, GM_* APIs, symbol-level editing, @match and @namespace rules |
customaise://agentscript-conventions | Full AgentScript reference: the // ==AgentScript== block, // @webmcp <tool> <permission> declarations, navigator.modelContext.registerTool(), consent model |
AgentScripts register tools on web pages via navigator.modelContext.registerTool(...). Each tool is declared in the AgentScript's // @webmcp <toolName> <permission> header with one of three permissions:
allow: tool executes immediately. ~50 to 100ms round-trip per call (the extension still runs permission checks).prompt: every call surfaces an in-browser consent modal and blocks until the user approves or denies. Up to 5 minutes. Design for this. Don't chain prompt-gated calls in tight loops, and treat a long call_webmcp_tool as normal.deny: tool is suppressed and calls fail immediately."Always allow" and "Always deny" buttons on the consent modal persist the decision per-script per-tool until the user resets it in extension Settings. These overrides live in chrome.storage.local on the user's device; the MCP server has no visibility into them.
If the user has Power User and has enabled Remote HITL Approvals on their Customaise account page, prompt-gated calls are also mirrored there. They can approve or deny from any signed-in browser, including a phone. Either the extension modal or the remote surface can resolve; first signed decision wins. From the MCP client's perspective this is transparent: call_webmcp_tool simply returns the result when any authorised surface approves, or an error if denied or timed out.
call_webmcp_tool response may take up to 5 minutes. Surface a pending state to the end user rather than timing out aggressively.call_webmcp_tool returns an error. The MCP server does not retry.Users can visually select elements in the browser, and the extension pushes context files to your workspace in real time:
.customaise/dom-context/<script-name>/
├── element-name.dom.md # Selectors, element context, user comments
├── element-name.screenshot.png # Cropped screenshot of the selected element
└── ...
[!NOTE] Where are the files saved? The MCP server writes
.customaise/to its current working directory (usually your project root in Cursor or Windsurf). If you are using a global IDE like Claude Desktop, it defaults to your home directory (~/.customaise/). To force a specific project folder, setCUSTOMAISE_WORKSPACEin your MCP config:"env": { "CUSTOMAISE_WORKSPACE": "/absolute/path/to/your/project" }
Use get_selected_elements to retrieve selections programmatically, or read the pushed .dom.md files directly from the workspace.
Each selection includes bulletproof tiered selectors (stable IDs → data attributes → ARIA → semantic classes → structural positioning) so targeting survives page updates.
1. get_page_context → understand the target page
2. User selects elements → .dom.md files auto-pushed to workspace
3. Write .user.js file → AI writes the script using IDE tools
4. export_script → Customaise validates and installs
5. reload_tab → re-inject the script
6. get_console_context → check for errors
7. take_screenshot → verify the visual result
1. Read customaise://agentscript-conventions → get the structure right before writing
2. get_page_context → find stable selectors on the target page
3. Write .agent.js file → declare tools via // @webmcp, register with navigator.modelContext.registerTool()
4. export_script → Customaise validates and injects
5. reload_tab → the AgentScript registers its tools in the page
6. list_webmcp_tools → confirm tools surfaced
7. call_webmcp_tool → invoke one; prompt-gated calls wait for user consent
Use sync_scripts to bulk-export every script to a local directory:
sync_scripts({ directory: "~/customaise-scripts" })
This creates:
.user.js file per script. Filename is derived from the script name (lowercase, hyphens, e.g. my-cool-script.user.js)..customaise-manifest.json: maps filenames to script IDs for round-trip editing.{
"dark-mode-fix.user.js": "vm_script_1774225715376_lus75sdzn",
"my-cool-script.user.js": "vm_script_1774225800123_abc12defg"
}
sync_scripts exports all scripts to a directory..user.js file in your IDE.export_script with the file path and scriptId from the manifest updates that script.scriptId when calling export_script to create a new script instead.Once sync_scripts has been called, the MCP server watches the directory for .user.js changes. Saving a file in your IDE pushes it to Customaise automatically, no manual export_script needed.
| Environment Variable | Default | Description |
|---|---|---|
CUSTOMAISE_WS_PORT | 4050 | WebSocket server port |
CUSTOMAISE_MCP_EXTRA_EXTENSION_IDS | (empty) | Comma-separated list of extra extension IDs allowed to connect. Needed for unpacked dev builds with a non-standard extension ID |
CUSTOMAISE_MCP_ALLOW_INSECURE | (unset) | Set to 1 to disable the origin allowlist. Tests only. Emits a loud warning at startup |
CUSTOMAISE_WORKSPACE | (cwd) | Absolute path where .customaise/ files should be written. Useful for IDEs that don't set cwd to the project root (Claude Desktop, Antigravity) |
The MCP server listens on ws://localhost:4050 in plaintext on your loopback interface. The connection is authenticated by an HTTP Origin header allowlist:
chrome-extension://anmpijcpaobaabcdncjjmnhdeibipmko (production) and chrome-extension://ijjaffggglamocdapoihpkcpealflopp (staging). Chrome stamps this header automatically on WebSocket handshakes from extension service workers; you don't configure anything.https://...), unknown extension IDs, and handshakes with no Origin header. Returns HTTP 403.What this stops: a malicious webpage opening new WebSocket('ws://localhost:4050') and calling WebMCP tools behind your back. This is the most likely abuse vector.
What this does NOT stop: a malicious native process running as your user. Node's ws client (and most HTTP libraries) lets callers forge any Origin header. If you can't trust processes running as your OS user, the threat model is already broader than this bridge.
Defense in depth: every prompt-permissioned tool still requires your explicit approval in the Customaise consent modal before running. Tools declared allow run without asking, so only install AgentScripts from sources you trust.
Dev builds: if you load an unpacked extension with a custom key, set CUSTOMAISE_MCP_EXTRA_EXTENSION_IDS=<your-extension-id> in the MCP server's env.
The MCP Bridge is free for any signed-in Customaise user. Free use is capped at 50 calls per UTC day and 150 calls per rolling 7-day window. Power User unlocks unlimited MCP. The cap covers every successful tool dispatch (built-in tools and WebMCP calls alike); failed calls and protocol-level traffic don't count.
When the cap fires, the server returns a JSON-RPC error in the implementation-defined -32029 slot with a human-readable message + structured data carrying scope, used/limit, and reset timestamp. IDEs that surface tool errors render the message verbatim. Sign-in is required regardless of tier; without a fresh Firebase ID token the server returns -32028 MCP_AUTH_REQUIRED.
"Customaise extension is not connected"
Port conflict on 4050
CUSTOMAISE_WS_PORT=4051 npx @customaise/mcp.Scripts not running after export
reload_tab to trigger script re-injection.@match pattern covers the current URL.call_webmcp_tool hangs for minutes
prompt-gated. The user has to approve in the browser, or remotely if Remote HITL Approvals is on. 5-minute budget before auto-deny. Surface a pending state rather than timing out.call_webmcp_tool returned an error like "consent denied"
list_webmcp_tools returns empty after a reload
@match pattern doesn't cover the URL. See customaise://agentscript-conventions for the full list.MIT
FAQs
MCP server bridging AI coding agents (Cursor, Claude Code, Codex, Windsurf, Kiro, Antigravity) to the Customaise Chrome extension. 18 tools: UserScripts, AgentScripts, WebMCP calls with HITL consent, visual DOM targeting, tab control.
We found that @customaise/mcp demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Research
/Security News
A mini Shai-Hulud campaign compromised Red Hat Cloud Services npm packages to steal developer and CI/CD secrets during installation.

Research
/Security News
The North Korean malware loader hides in a Packagist-listed package and its GitHub branch to fetch and execute remote code in a likely Contagious Interview-style lure.

Security News
The Rust project is moving toward formal rules on LLM use in contributions after months of internal debate over maintainer burden, code quality, and contributor experience.