├── .bandit.yml ├── .cursor └── mcp.json ├── .dockerignore ├── .env.example ├── .flake8 ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── pull_request_template.md └── workflows │ ├── ci.yml │ ├── mega-linter.yaml │ ├── python-publish.yml │ └── release.yaml ├── .gitignore ├── .mega-linter.yml ├── .pylintrc ├── .python-version ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── pyproject.toml ├── pyrightconfig.json ├── server ├── __init__.py ├── __main__.py └── server.py ├── src └── browser_use_mcp_server │ ├── __init__.py │ ├── cli.py │ └── server.py └── uv.lock /.bandit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kontext-dev/browser-use-mcp-server/HEAD/.bandit.yml -------------------------------------------------------------------------------- /.cursor/mcp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kontext-dev/browser-use-mcp-server/HEAD/.cursor/mcp.json -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kontext-dev/browser-use-mcp-server/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kontext-dev/browser-use-mcp-server/HEAD/.env.example -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kontext-dev/browser-use-mcp-server/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kontext-dev/browser-use-mcp-server/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kontext-dev/browser-use-mcp-server/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kontext-dev/browser-use-mcp-server/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kontext-dev/browser-use-mcp-server/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/mega-linter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kontext-dev/browser-use-mcp-server/HEAD/.github/workflows/mega-linter.yaml -------------------------------------------------------------------------------- /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kontext-dev/browser-use-mcp-server/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kontext-dev/browser-use-mcp-server/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kontext-dev/browser-use-mcp-server/HEAD/.gitignore -------------------------------------------------------------------------------- /.mega-linter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kontext-dev/browser-use-mcp-server/HEAD/.mega-linter.yml -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kontext-dev/browser-use-mcp-server/HEAD/.pylintrc -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.13 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kontext-dev/browser-use-mcp-server/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kontext-dev/browser-use-mcp-server/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kontext-dev/browser-use-mcp-server/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kontext-dev/browser-use-mcp-server/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kontext-dev/browser-use-mcp-server/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kontext-dev/browser-use-mcp-server/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pyrightconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kontext-dev/browser-use-mcp-server/HEAD/pyrightconfig.json -------------------------------------------------------------------------------- /server/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kontext-dev/browser-use-mcp-server/HEAD/server/__init__.py -------------------------------------------------------------------------------- /server/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kontext-dev/browser-use-mcp-server/HEAD/server/__main__.py -------------------------------------------------------------------------------- /server/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kontext-dev/browser-use-mcp-server/HEAD/server/server.py -------------------------------------------------------------------------------- /src/browser_use_mcp_server/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kontext-dev/browser-use-mcp-server/HEAD/src/browser_use_mcp_server/__init__.py -------------------------------------------------------------------------------- /src/browser_use_mcp_server/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kontext-dev/browser-use-mcp-server/HEAD/src/browser_use_mcp_server/cli.py -------------------------------------------------------------------------------- /src/browser_use_mcp_server/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kontext-dev/browser-use-mcp-server/HEAD/src/browser_use_mcp_server/server.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kontext-dev/browser-use-mcp-server/HEAD/uv.lock --------------------------------------------------------------------------------