This is a local bridge service that enables n8n to communicate with the Browser Use Python library. It mimics the Browser Use Cloud API endpoints but runs locally, allowing you to execute browser automation tasks without relying on the cloud service.
- Compatible with the Browser Use Cloud API endpoints
- Supports both OpenAI and Anthropic language models
- Provides task management (run, pause, resume, stop)
- Exposes status tracking and result retrieval
- Python 3.10 or higher
- pip (Python package manager)
- Browser Use Python library
- API keys for OpenAI or Anthropic (depending on which LLM you want to use)
-
Clone this repository:
git clone https://github.com/yourusername/browser-n8n-local.git cd browser-n8n-local
-
Create a virtual environment (recommended):
python -m venv venv source venv/bin/activate # On Windows: venv\Scripts\activate
-
Install the required dependencies:
pip install -r requirements.txt
-
Set up environment variables:
cp .env-example .env
Then edit the
.env
file to add your OpenAI and/or Anthropic API keys.
-
Start the FastAPI server:
python app.py
-
The server will start at http://localhost:8000 by default.
-
You can access the API documentation at http://localhost:8000/docs
Method | Endpoint | Description |
---|---|---|
POST | /api/v1/run-task | Start a new browser task |
GET | /api/v1/task/{task_id} | Get task details |
GET | /api/v1/task/{task_id}/status | Get task status |
PUT | /api/v1/stop-task/{task_id} | Stop a running task |
PUT | /api/v1/pause-task/{task_id} | Pause a running task |
PUT | /api/v1/resume-task/{task_id} | Resume a paused task |
GET | /api/v1/list-tasks | List all tasks |
curl -X POST http://localhost:8000/api/v1/run-task \
-H "Content-Type: application/json" \
-d '{"task": "Go to google.com and search for n8n automation", "ai_provider": "openai"}'
curl -X GET http://localhost:8000/api/v1/task/{task_id}/status
curl -X PUT http://localhost:8000/api/v1/stop-task/{task_id}
You can configure the service by editing the .env
file. Available options are grouped below:
PORT
: The port the service will run on (default: 8000).
OPENAI_API_KEY
: Your OpenAI API key.OPENAI_MODEL_ID
: The model to use (e.g.,gpt-4o
).OPENAI_BASE_URL
: Optional custom endpoint for OpenAI compatible APIs.
ANTHROPIC_API_KEY
: Your Anthropic API key.ANTHROPIC_MODEL_ID
: The model to use (e.g.,claude-3-opus-20240229
).
MISTRAL_API_KEY
: Your MistralAI API key.MISTRAL_MODEL_ID
: The model to use (e.g.,mistral-large-latest
).
GOOGLE_API_KEY
: Your Google AI API key.GOOGLE_MODEL_ID
: The model to use (e.g.,gemini-1.5-pro
).
OLLAMA_API_BASE
: The base URL for your Ollama instance.OLLAMA_MODEL_ID
: The model to use (e.g.,llama3
).
AZURE_API_KEY
: Your Azure OpenAI API key.AZURE_ENDPOINT
: Your Azure OpenAI endpoint URL.AZURE_DEPLOYMENT_NAME
: Your deployment name.AZURE_API_VERSION
: API version to use.
LOG_LEVEL
: Logging level (default:INFO
).BROWSER_USE_HEADFUL
: Set to"true"
to run the browser in headful mode (default:false
, runs in headless mode).
- ImportError with browser-use: Make sure you have installed the browser-use package and its dependencies correctly.
- API Key Issues: Verify that your API keys are correctly set in the
.env
file. - Port Conflicts: If port 8000 is already in use, set a different port in the
.env
file.
This project is licensed under the MIT License - see the LICENSE file for details.
- Browser Use - The underlying browser automation library
- FastAPI - The web framework used
- n8n - The workflow automation platform this bridge is designed for # browser-n8n-local