Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cursor/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/).

Expand Down
2 changes: 1 addition & 1 deletion cursor/mcp.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
}
}
}
2 changes: 1 addition & 1 deletion cursor/skills/browser-use/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down