auto-browser-mcp 1.2.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,40 @@
1
+ Metadata-Version: 2.4
2
+ Name: auto-browser-mcp
3
+ Version: 1.2.1
4
+ Summary: MCP stdio bridge for Auto Browser (metapackage for `uvx auto-browser-mcp`)
5
+ License: MIT
6
+ Project-URL: Homepage, https://github.com/LvcidPsyche/auto-browser
7
+ Project-URL: Repository, https://github.com/LvcidPsyche/auto-browser
8
+ Keywords: auto-browser,mcp,mcp-server,browser-automation
9
+ Classifier: Development Status :: 4 - Beta
10
+ Classifier: Intended Audience :: Developers
11
+ Classifier: License :: OSI Approved :: MIT License
12
+ Classifier: Programming Language :: Python :: 3
13
+ Requires-Python: >=3.10
14
+ Description-Content-Type: text/markdown
15
+ Requires-Dist: auto-browser-client>=1.2.1
16
+
17
+ # auto-browser-mcp
18
+
19
+ Stdio MCP bridge for [Auto Browser](https://github.com/LvcidPsyche/auto-browser) — give your AI agent a real browser, with a human in the loop.
20
+
21
+ This is a metapackage: it installs [`auto-browser-client`](https://pypi.org/project/auto-browser-client/) and exposes the `auto-browser-mcp` command so MCP clients can launch the bridge with a single `uvx` invocation.
22
+
23
+ ## Usage
24
+
25
+ With a local Auto Browser stack running (`docker compose up` in the repo):
26
+
27
+ ```json
28
+ {
29
+ "mcpServers": {
30
+ "auto-browser": {
31
+ "command": "uvx",
32
+ "args": ["auto-browser-mcp"]
33
+ }
34
+ }
35
+ }
36
+ ```
37
+
38
+ Pass `--base-url` / `--bearer-token` (or set `AUTO_BROWSER_BASE_URL` / `AUTO_BROWSER_BEARER_TOKEN`) for non-default deployments.
39
+
40
+ See the [Auto Browser repository](https://github.com/LvcidPsyche/auto-browser) for the full server, docs, and examples.
@@ -0,0 +1,24 @@
1
+ # auto-browser-mcp
2
+
3
+ Stdio MCP bridge for [Auto Browser](https://github.com/LvcidPsyche/auto-browser) — give your AI agent a real browser, with a human in the loop.
4
+
5
+ This is a metapackage: it installs [`auto-browser-client`](https://pypi.org/project/auto-browser-client/) and exposes the `auto-browser-mcp` command so MCP clients can launch the bridge with a single `uvx` invocation.
6
+
7
+ ## Usage
8
+
9
+ With a local Auto Browser stack running (`docker compose up` in the repo):
10
+
11
+ ```json
12
+ {
13
+ "mcpServers": {
14
+ "auto-browser": {
15
+ "command": "uvx",
16
+ "args": ["auto-browser-mcp"]
17
+ }
18
+ }
19
+ }
20
+ ```
21
+
22
+ Pass `--base-url` / `--bearer-token` (or set `AUTO_BROWSER_BASE_URL` / `AUTO_BROWSER_BEARER_TOKEN`) for non-default deployments.
23
+
24
+ See the [Auto Browser repository](https://github.com/LvcidPsyche/auto-browser) for the full server, docs, and examples.
@@ -0,0 +1,40 @@
1
+ Metadata-Version: 2.4
2
+ Name: auto-browser-mcp
3
+ Version: 1.2.1
4
+ Summary: MCP stdio bridge for Auto Browser (metapackage for `uvx auto-browser-mcp`)
5
+ License: MIT
6
+ Project-URL: Homepage, https://github.com/LvcidPsyche/auto-browser
7
+ Project-URL: Repository, https://github.com/LvcidPsyche/auto-browser
8
+ Keywords: auto-browser,mcp,mcp-server,browser-automation
9
+ Classifier: Development Status :: 4 - Beta
10
+ Classifier: Intended Audience :: Developers
11
+ Classifier: License :: OSI Approved :: MIT License
12
+ Classifier: Programming Language :: Python :: 3
13
+ Requires-Python: >=3.10
14
+ Description-Content-Type: text/markdown
15
+ Requires-Dist: auto-browser-client>=1.2.1
16
+
17
+ # auto-browser-mcp
18
+
19
+ Stdio MCP bridge for [Auto Browser](https://github.com/LvcidPsyche/auto-browser) — give your AI agent a real browser, with a human in the loop.
20
+
21
+ This is a metapackage: it installs [`auto-browser-client`](https://pypi.org/project/auto-browser-client/) and exposes the `auto-browser-mcp` command so MCP clients can launch the bridge with a single `uvx` invocation.
22
+
23
+ ## Usage
24
+
25
+ With a local Auto Browser stack running (`docker compose up` in the repo):
26
+
27
+ ```json
28
+ {
29
+ "mcpServers": {
30
+ "auto-browser": {
31
+ "command": "uvx",
32
+ "args": ["auto-browser-mcp"]
33
+ }
34
+ }
35
+ }
36
+ ```
37
+
38
+ Pass `--base-url` / `--bearer-token` (or set `AUTO_BROWSER_BASE_URL` / `AUTO_BROWSER_BEARER_TOKEN`) for non-default deployments.
39
+
40
+ See the [Auto Browser repository](https://github.com/LvcidPsyche/auto-browser) for the full server, docs, and examples.
@@ -0,0 +1,8 @@
1
+ README.md
2
+ pyproject.toml
3
+ auto_browser_mcp.egg-info/PKG-INFO
4
+ auto_browser_mcp.egg-info/SOURCES.txt
5
+ auto_browser_mcp.egg-info/dependency_links.txt
6
+ auto_browser_mcp.egg-info/entry_points.txt
7
+ auto_browser_mcp.egg-info/requires.txt
8
+ auto_browser_mcp.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ auto-browser-mcp = auto_browser_client.mcp_bridge:main
@@ -0,0 +1 @@
1
+ auto-browser-client>=1.2.1
@@ -0,0 +1,32 @@
1
+ [build-system]
2
+ requires = ["setuptools>=68"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ # Metapackage: exists so `uvx auto-browser-mcp` works without --from.
6
+ # All code lives in auto-browser-client; this package only re-declares the
7
+ # console script against that dependency.
8
+ [project]
9
+ name = "auto-browser-mcp"
10
+ version = "1.2.1"
11
+ description = "MCP stdio bridge for Auto Browser (metapackage for `uvx auto-browser-mcp`)"
12
+ readme = "README.md"
13
+ license = { text = "MIT" }
14
+ requires-python = ">=3.10"
15
+ dependencies = ["auto-browser-client>=1.2.1"]
16
+ keywords = ["auto-browser", "mcp", "mcp-server", "browser-automation"]
17
+ classifiers = [
18
+ "Development Status :: 4 - Beta",
19
+ "Intended Audience :: Developers",
20
+ "License :: OSI Approved :: MIT License",
21
+ "Programming Language :: Python :: 3",
22
+ ]
23
+
24
+ [project.urls]
25
+ Homepage = "https://github.com/LvcidPsyche/auto-browser"
26
+ Repository = "https://github.com/LvcidPsyche/auto-browser"
27
+
28
+ [project.scripts]
29
+ auto-browser-mcp = "auto_browser_client.mcp_bridge:main"
30
+
31
+ [tool.setuptools]
32
+ py-modules = []
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+