diff --git a/cursor/README.md b/cursor/README.md index ac39189..4bd0c63 100644 --- a/cursor/README.md +++ b/cursor/README.md @@ -3,7 +3,7 @@ Gives Cursor's agent a real browser via the Browser Use CLI. Bundles: - **Skill** (`skills/browser-use/SKILL.md`): teaches the agent to drive Chrome (or a Browser Use Cloud browser) through the `browser-use` CLI — navigation, coordinate clicks, extraction, screenshots, cloud daemons. -- **MCP server** (`mcp.json`): registers `uvx browser-use@latest --cli-mcp`, a self-installing stdio server exposing `browser_exec` and `browser_screenshot` with a persistent Python helper namespace. +- **MCP server** (`mcp.json`): registers `uvx browser-use@0.13.7 --cli-mcp`, a self-installing stdio server exposing `browser_exec` and `browser_screenshot` with a persistent Python helper namespace. Only prerequisite on the user's machine: [uv](https://docs.astral.sh/uv/). diff --git a/cursor/mcp.json b/cursor/mcp.json index 6eecf8b..bd8c911 100644 --- a/cursor/mcp.json +++ b/cursor/mcp.json @@ -2,7 +2,7 @@ "mcpServers": { "browser-use": { "command": "uvx", - "args": ["--python", "3.12", "browser-use@latest", "--cli-mcp"] + "args": ["--python", "3.12", "browser-use@0.13.7", "--cli-mcp"] } } } diff --git a/cursor/skills/browser-use/SKILL.md b/cursor/skills/browser-use/SKILL.md index 20bed2f..0ba3814 100644 --- a/cursor/skills/browser-use/SKILL.md +++ b/cursor/skills/browser-use/SKILL.md @@ -9,7 +9,7 @@ Direct browser control via CDP. For setup, install, or connection problems, read ## Two ways to drive the browser -1. **MCP tools (preferred when connected):** this plugin registers the `browser-use` MCP server. Use its `browser_exec` tool (run Python with the helpers below pre-imported; the namespace persists across calls) and `browser_screenshot` tool. The server self-installs via `uvx browser-use@latest --cli-mcp` — it only requires `uv` on PATH. +1. **MCP tools (preferred when connected):** this plugin registers the `browser-use` MCP server. Use its `browser_exec` tool (run Python with the helpers below pre-imported; the namespace persists across calls) and `browser_screenshot` tool. The server self-installs via `uvx browser-use@0.13.7 --cli-mcp` — it only requires `uv` on PATH. 2. **CLI in a shell:** run `browser-use` with a heredoc. Same helpers, same daemon. ```bash