Metadata-Version: 2.2
Name: browser-use-mcp
Version: 0.1.3
Summary: Browser MCP Server.
Requires-Python: >=3.11.7
Description-Content-Type: text/markdown
Requires-Dist: browser-use>=0.1.24
Requires-Dist: cryptography>=44.0.1
Requires-Dist: dotenv>=0.9.9
Requires-Dist: langchain-community>=0.3.18
Requires-Dist: langchain-core>=0.3.40
Requires-Dist: langchain-ollama>=0.2.3
Requires-Dist: langchain-openai>=0.3.7
Requires-Dist: mcp[cli]>=1.3.0
Requires-Dist: pypdf>=5.3.0
Requires-Dist: requests>=2.32.3

# Browser Control MCP Server

The MCP Server to control the Chrome Browser using LLM

## System Requirements
- Chrome browser was installed in you PC.
- Python >= 3.11.7
- uv which is python packaging tool was installed

## Claude Setting

```json
{
  "mcpServers": {
    "browser_use_mcp": {
      "command": "path/to/your/uv",
      "args": [
        "--directory",
        "/path/to/your/browser_use_mcp/",
        "run",
        "main.py"
      ],
      "env": {
        "OPENAI_API_KEY": "your OPENAI_API_KEY",
        "OPENAI_MODEL_NAME": "your OPENAI_MODEL_NAME"
      }
    }
  }
}
```
