pypi realtimex-browser-usestdioMITupdated 11mo ago
Download chromium using playwright's shortcut:
browser use 能做什么?
Deutsch | Español | français | 日本語 | 한국어 | Português | Русский | 中文
🤖 Quickstart
With uv (Python>=3.11):
# We ship every day - use the latest version!
uv pip install browser-use
Download chromium using playwright's shortcut:
uvx playwright install chromium --with-deps --no-shell
Create a .env file and add your API key. Don't have one? Start with a free Gemini key.
GEMINI_API_KEY=
Run your first agent:
from browser_use import Agent, ChatGoogle
from dotenv import load_dotenv
load_dotenv()
agent = Agent(
task="Find the number of stars of the browser-use repo",
llm=ChatGoogle(model="gemini-flash-latest"),
# browser=Browser(use_cloud=True), # Uses Browser-Use cloud for the browser
)
agent.run_sync()
Check out the library docs and cloud docs for more settings.
Stealth Browser Infrastructure
Want to bypass Cloudflare, or any other anti-bot protection?
Simply go to Browser Use Cloud grab a BROWSER_USE_API_KEY and use the use_cloud parameter.
from browser_use import Agent, Browser, ChatOpenAI
# Use Browser-Use cloud browser service
browser = Browser(
use_cloud=True, # Automatically provisions a cloud browser
)
agent = Agent(
task="Your task here",
llm=ChatOpenAI(model='gpt-4.1-mini'),
browser=browser,
)
Demos
Task: Add grocery items to cart, and checkout.
Task: Read my CV & find ML jobs, save them to a file, and then start applying for them in new tabs, if you need help, ask me.
https://github.com/user-attachments/assets/171fb4d6-0355-46f2-863e-edb04a828d04
See more examples and give us a star!
MCP Integration
This gives Claude Desktop access to browser automation tools for web scraping, form filling, and more. See the MCP docs.
{
"mcpServers": {
"browser-use": {
"command": "uvx",
"args": ["browser-use[cli]", "--mcp"],
"env": {
"OPENAI_API_KEY": "sk-..."
}
}
}
}
Tell your computer what to do, and it gets it done.
安装
把 browser use 添加到你的客户端。选择你正在使用的那个。
claude mcp add realtimex-browser-use -- uvx realtimex-browser-usecodex mcp add realtimex-browser-use -- uvx realtimex-browser-useamp mcp add realtimex-browser-use -- uvx realtimex-browser-use{
"mcpServers": {
"realtimex-browser-use": {
"command": "uvx",
"args": [
"realtimex-browser-use"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"realtimex-browser-use": {
"command": "uvx",
"args": [
"realtimex-browser-use"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"realtimex-browser-use","command":"uvx","args":["realtimex-browser-use"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"realtimex-browser-use": {
"command": "uvx",
"args": [
"realtimex-browser-use"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"realtimex-browser-use": {
"command": "uvx",
"args": [
"realtimex-browser-use"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"realtimex-browser-use": {
"command": "uvx",
"args": [
"realtimex-browser-use"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"realtimex-browser-use": {
"type": "local",
"command": "uvx",
"args": [
"realtimex-browser-use"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"realtimex-browser-use": {
"command": {
"path": "uvx",
"args": [
"realtimex-browser-use"
]
}
}
}
}Add to your Zed `settings.json`.
uvx realtimex-browser-useRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
评分
39 / 100
不完整
- 文档25/25
- 维护15/25
- 可信度13/20
- 能力0/15
- 安装体验12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 335 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
版本历史
| 版本 | 发布于 |
|---|---|
| 0.7.10最新 | 2025年10月1日 |
| 0.7.10.dev5 | 2025年10月1日 |
| 0.7.10.dev1 | 2025年10月1日 |