OpenClaw integration
Give OpenClaw your persistent AliasMode browser profiles.
AliasMode registers as a local stdio MCP server in OpenClaw. The assistant gets profile lifecycle, browser control, and 31 Playwright page actions on the Windows machine that holds the profiles.
Direct answer
Run aliasmode-mcp setup --yes --client openclaw in the AliasMode install directory, restart the OpenClaw gateway, and confirm the aliasmode tool list (40 tools on the beta.47 installer).
Set up OpenClaw
Install AliasMode on Windows
Download the installer, install CloakBrowser, and create at least one profile. Keep the desktop app available; the MCP helper starts it in the background when needed.
Locate the MCP helper
The Windows installer places aliasmode-mcp.exe next to AliasMode.exe, by default in %LOCALAPPDATA%\AliasMode.
Register the server automatically
Run the setup from the install directory. It detects OpenClaw, removes any older aliasmode registration, and writes the new one.
cd "%LOCALAPPDATA%\AliasMode" aliasmode-mcp setup --yes --client openclawOr register manually
The manual command matches what the setup writes:
openclaw mcp add aliasmode --command "%LOCALAPPDATA%\AliasMode\aliasmode-mcp.exe" --arg serveRestart the gateway
Restart the OpenClaw gateway (or its equivalent runtime) so the new MCP server loads, then confirm the aliasmode tools appear in the tool list.
Run a browser test
Give the assistant a small end-to-end task:
List my AliasMode profiles. Open the profile named Research headless and take a snapshot of the page. Close the browser.
Verify the connection
- The OpenClaw tool list shows the aliasmode server with its tools loaded.
- The tool list includes aliasmode_profiles_list plus 31 Playwright actions — 40 tools on the beta.47 installer.
- A headless browser opens from a named profile and browser_snapshot returns real page content.
- GET /api/v1/status on 127.0.0.1:50400 responds on the same machine while the desktop app is open.
Troubleshooting
| Symptom | Fix |
|---|---|
| OpenClaw does not show the aliasmode tools | Rerun aliasmode-mcp setup --yes --client openclaw, then restart the gateway so the MCP server reloads. Confirm the helper path points inside the AliasMode install directory. |
| Tool calls fail with a runtime readiness error | The helper starts AliasMode in the background and waits briefly. Open the desktop app manually, wait for the dashboard to load, then retry. |
| Playwright tools return a selection error | Open a profile with aliasmode_browser_open or select an open browser with aliasmode_browser_select before page actions. |
| The browser opens on the wrong machine | The stdio server controls the machine it runs on. Run the OpenClaw gateway on the same Windows machine as AliasMode, or use Remote MCP from other devices. |
What OpenClaw gets
- Profile lifecycle: list, create, and delete profiles through the assistant
- Browser control: open headful or headless, select an open browser, check status, close safely
- Page actions: 31 Playwright tools for navigation, forms, screenshots, and verification
- On-device privacy: profiles, cookies, and proxies stay on the Windows machine
Generic JSON alternative
If you manage OpenClaw MCP servers through a configuration file, the standard stdio shape below is equivalent to what the setup command writes.
{
"mcpServers": {
"aliasmode": {
"command": "C:\\Users\\<you>\\AppData\\Local\\AliasMode\\aliasmode-mcp.exe",
"args": [
"serve"
]
}
}
}Sources and verification
- OpenClaw · OpenClaw documentation — MCP server configuration (checked September 2026)
- AliasMode repository · agent/setup.ts — generated OpenClaw registration command (checked September 2026)
- AliasMode · Generated MCP tool catalog for the released 0.1.0-beta.47 installer (checked September 2026)
Public product details can change after the check date. Facts are re-checked on a monthly cycle.