web-mcp-tools 0.0.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,415 @@
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[codz]
4
+ *$py.class
5
+
6
+ # C extensions
7
+ *.so
8
+
9
+ # Distribution / packaging
10
+ .Python
11
+ build/
12
+ develop-eggs/
13
+ dist/
14
+ downloads/
15
+ eggs/
16
+ .eggs/
17
+ lib/
18
+ lib64/
19
+ parts/
20
+ sdist/
21
+ var/
22
+ wheels/
23
+ share/python-wheels/
24
+ *.egg-info/
25
+ .installed.cfg
26
+ *.egg
27
+ MANIFEST
28
+
29
+ # PyInstaller
30
+ # Usually these files are written by a python script from a template
31
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
32
+ *.manifest
33
+ *.spec
34
+
35
+ # Installer logs
36
+ pip-log.txt
37
+ pip-delete-this-directory.txt
38
+
39
+ # Unit test / coverage reports
40
+ htmlcov/
41
+ .tox/
42
+ .nox/
43
+ .coverage
44
+ .coverage.*
45
+ .cache
46
+ nosetests.xml
47
+ coverage.xml
48
+ *.cover
49
+ *.py.cover
50
+ .hypothesis/
51
+ .pytest_cache/
52
+ cover/
53
+
54
+ # Translations
55
+ *.mo
56
+ *.pot
57
+
58
+ # Django stuff:
59
+ *.log
60
+ local_settings.py
61
+ db.sqlite3
62
+ db.sqlite3-journal
63
+
64
+ # Flask stuff:
65
+ instance/
66
+ .webassets-cache
67
+
68
+ # Scrapy stuff:
69
+ .scrapy
70
+
71
+ # Sphinx documentation
72
+ docs/_build/
73
+
74
+ # PyBuilder
75
+ .pybuilder/
76
+ target/
77
+
78
+ # Jupyter Notebook
79
+ .ipynb_checkpoints
80
+
81
+ # IPython
82
+ profile_default/
83
+ ipython_config.py
84
+
85
+ # pyenv
86
+ # For a library or package, you might want to ignore these files since the code is
87
+ # intended to run in multiple environments; otherwise, check them in:
88
+ # .python-version
89
+
90
+ # pipenv
91
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
92
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
93
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
94
+ # install all needed dependencies.
95
+ #Pipfile.lock
96
+
97
+ # UV
98
+ # Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
99
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
100
+ # commonly ignored for libraries.
101
+ #uv.lock
102
+
103
+ # poetry
104
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
105
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
106
+ # commonly ignored for libraries.
107
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
108
+ #poetry.lock
109
+ #poetry.toml
110
+
111
+ # pdm
112
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
113
+ # pdm recommends including project-wide configuration in pdm.toml, but excluding .pdm-python.
114
+ # https://pdm-project.org/en/latest/usage/project/#working-with-version-control
115
+ #pdm.lock
116
+ #pdm.toml
117
+ .pdm-python
118
+ .pdm-build/
119
+
120
+ # pixi
121
+ # Similar to Pipfile.lock, it is generally recommended to include pixi.lock in version control.
122
+ #pixi.lock
123
+ # Pixi creates a virtual environment in the .pixi directory, just like venv module creates one
124
+ # in the .venv directory. It is recommended not to include this directory in version control.
125
+ .pixi
126
+
127
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
128
+ __pypackages__/
129
+
130
+ # Celery stuff
131
+ celerybeat-schedule
132
+ celerybeat.pid
133
+
134
+ # SageMath parsed files
135
+ *.sage.py
136
+
137
+ # Environments
138
+ .env
139
+ .envrc
140
+ .venv
141
+ env/
142
+ venv/
143
+ ENV/
144
+ env.bak/
145
+ venv.bak/
146
+
147
+ # Spyder project settings
148
+ .spyderproject
149
+ .spyproject
150
+
151
+ # Rope project settings
152
+ .ropeproject
153
+
154
+ # mkdocs documentation
155
+ /site
156
+
157
+ # mypy
158
+ .mypy_cache/
159
+ .dmypy.json
160
+ dmypy.json
161
+
162
+ # Pyre type checker
163
+ .pyre/
164
+
165
+ # pytype static type analyzer
166
+ .pytype/
167
+
168
+ # Cython debug symbols
169
+ cython_debug/
170
+
171
+ # PyCharm
172
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
173
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
174
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
175
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
176
+ #.idea/
177
+
178
+ # Abstra
179
+ # Abstra is an AI-powered process automation framework.
180
+ # Ignore directories containing user credentials, local state, and settings.
181
+ # Learn more at https://abstra.io/docs
182
+ .abstra/
183
+
184
+ # Visual Studio Code
185
+ # Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore
186
+ # that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore
187
+ # and can be added to the global gitignore or merged into this file. However, if you prefer,
188
+ # you could uncomment the following to ignore the entire vscode folder
189
+ # .vscode/
190
+
191
+ # Ruff stuff:
192
+ .ruff_cache/
193
+
194
+ # PyPI configuration file
195
+ .pypirc
196
+
197
+ # Cursor
198
+ # Cursor is an AI-powered code editor. `.cursorignore` specifies files/directories to
199
+ # exclude from AI features like autocomplete and code analysis. Recommended for sensitive data
200
+ # refer to https://docs.cursor.com/context/ignore-files
201
+ .cursorignore
202
+ .cursorindexingignore
203
+
204
+ # Marimo
205
+ marimo/_static/
206
+ marimo/_lsp/
207
+ __marimo__/
208
+
209
+ # Byte-compiled / optimized / DLL files
210
+ __pycache__/
211
+ *.py[codz]
212
+ *$py.class
213
+
214
+ # C extensions
215
+ *.so
216
+
217
+ # Distribution / packaging
218
+ .Python
219
+ build/
220
+ develop-eggs/
221
+ dist/
222
+ downloads/
223
+ eggs/
224
+ .eggs/
225
+ lib/
226
+ lib64/
227
+ parts/
228
+ sdist/
229
+ var/
230
+ wheels/
231
+ share/python-wheels/
232
+ *.egg-info/
233
+ .installed.cfg
234
+ *.egg
235
+ MANIFEST
236
+
237
+ # PyInstaller
238
+ # Usually these files are written by a python script from a template
239
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
240
+ *.manifest
241
+ *.spec
242
+
243
+ # Installer logs
244
+ pip-log.txt
245
+ pip-delete-this-directory.txt
246
+
247
+ # Unit test / coverage reports
248
+ htmlcov/
249
+ .tox/
250
+ .nox/
251
+ .coverage
252
+ .coverage.*
253
+ .cache
254
+ nosetests.xml
255
+ coverage.xml
256
+ *.cover
257
+ *.py.cover
258
+ .hypothesis/
259
+ .pytest_cache/
260
+ cover/
261
+
262
+ # Translations
263
+ *.mo
264
+ *.pot
265
+
266
+ # Django stuff:
267
+ *.log
268
+ local_settings.py
269
+ db.sqlite3
270
+ db.sqlite3-journal
271
+
272
+ # Flask stuff:
273
+ instance/
274
+ .webassets-cache
275
+
276
+ # Scrapy stuff:
277
+ .scrapy
278
+
279
+ # Sphinx documentation
280
+ docs/_build/
281
+
282
+ # PyBuilder
283
+ .pybuilder/
284
+ target/
285
+
286
+ # Jupyter Notebook
287
+ .ipynb_checkpoints
288
+
289
+ # IPython
290
+ profile_default/
291
+ ipython_config.py
292
+
293
+ # pyenv
294
+ # For a library or package, you might want to ignore these files since the code is
295
+ # intended to run in multiple environments; otherwise, check them in:
296
+ # .python-version
297
+
298
+ # pipenv
299
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
300
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
301
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
302
+ # install all needed dependencies.
303
+ #Pipfile.lock
304
+
305
+ # UV
306
+ # Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
307
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
308
+ # commonly ignored for libraries.
309
+ #uv.lock
310
+
311
+ # poetry
312
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
313
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
314
+ # commonly ignored for libraries.
315
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
316
+ #poetry.lock
317
+ #poetry.toml
318
+
319
+ # pdm
320
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
321
+ # pdm recommends including project-wide configuration in pdm.toml, but excluding .pdm-python.
322
+ # https://pdm-project.org/en/latest/usage/project/#working-with-version-control
323
+ #pdm.lock
324
+ #pdm.toml
325
+ .pdm-python
326
+ .pdm-build/
327
+
328
+ # pixi
329
+ # Similar to Pipfile.lock, it is generally recommended to include pixi.lock in version control.
330
+ #pixi.lock
331
+ # Pixi creates a virtual environment in the .pixi directory, just like venv module creates one
332
+ # in the .venv directory. It is recommended not to include this directory in version control.
333
+ .pixi
334
+
335
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
336
+ __pypackages__/
337
+
338
+ # Celery stuff
339
+ celerybeat-schedule
340
+ celerybeat.pid
341
+
342
+ # SageMath parsed files
343
+ *.sage.py
344
+
345
+ # Environments
346
+ .env
347
+ .envrc
348
+ .venv
349
+ env/
350
+ venv/
351
+ ENV/
352
+ env.bak/
353
+ venv.bak/
354
+
355
+ # Spyder project settings
356
+ .spyderproject
357
+ .spyproject
358
+
359
+ # Rope project settings
360
+ .ropeproject
361
+
362
+ # mkdocs documentation
363
+ /site
364
+
365
+ # mypy
366
+ .mypy_cache/
367
+ .dmypy.json
368
+ dmypy.json
369
+
370
+ # Pyre type checker
371
+ .pyre/
372
+
373
+ # pytype static type analyzer
374
+ .pytype/
375
+
376
+ # Cython debug symbols
377
+ cython_debug/
378
+
379
+ # PyCharm
380
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
381
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
382
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
383
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
384
+ #.idea/
385
+
386
+ # Abstra
387
+ # Abstra is an AI-powered process automation framework.
388
+ # Ignore directories containing user credentials, local state, and settings.
389
+ # Learn more at https://abstra.io/docs
390
+ .abstra/
391
+
392
+ # Visual Studio Code
393
+ # Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore
394
+ # that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore
395
+ # and can be added to the global gitignore or merged into this file. However, if you prefer,
396
+ # you could uncomment the following to ignore the entire vscode folder
397
+ # .vscode/
398
+
399
+ # Ruff stuff:
400
+ .ruff_cache/
401
+
402
+ # PyPI configuration file
403
+ .pypirc
404
+
405
+ # Cursor
406
+ # Cursor is an AI-powered code editor. `.cursorignore` specifies files/directories to
407
+ # exclude from AI features like autocomplete and code analysis. Recommended for sensitive data
408
+ # refer to https://docs.cursor.com/context/ignore-files
409
+ .cursorignore
410
+ .cursorindexingignore
411
+
412
+ # Marimo
413
+ marimo/_static/
414
+ marimo/_lsp/
415
+ __marimo__/
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Arjun Earthperson
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,80 @@
1
+ Metadata-Version: 2.4
2
+ Name: web-mcp-tools
3
+ Version: 0.0.1
4
+ Summary: Firecrawl-backed web scrape MCP server with browser cookie support
5
+ Author-email: Arjun Earthperson <mail@earthperson.org>
6
+ License-File: LICENSE
7
+ Requires-Python: <3.15,>=3.14
8
+ Requires-Dist: firecrawl>=4.22.1
9
+ Requires-Dist: mcp>=1.27.0
10
+ Requires-Dist: pydantic>=2.11
11
+ Requires-Dist: typing-extensions>=4.0.0
12
+ Provides-Extra: dev
13
+ Requires-Dist: black>=26.0.0; extra == 'dev'
14
+ Requires-Dist: nuitka>=4.0.1; extra == 'dev'
15
+ Requires-Dist: pytest-asyncio>=0.24.0; extra == 'dev'
16
+ Requires-Dist: pytest-cov>=5.0.0; extra == 'dev'
17
+ Requires-Dist: pytest>=8.0.0; extra == 'dev'
18
+ Requires-Dist: ruff>=0.6.0; extra == 'dev'
19
+ Description-Content-Type: text/markdown
20
+
21
+ # web-mcp-tools
22
+
23
+ [![Lint](https://img.shields.io/github/checks-status/a-earthperson/web-mcp-tools/main?checkName=Lint&label=lint)](https://github.com/a-earthperson/web-mcp-tools/actions/workflows/ci.yml)
24
+ [![Tests](https://img.shields.io/github/checks-status/a-earthperson/web-mcp-tools/main?checkName=Tests&label=tests)](https://github.com/a-earthperson/web-mcp-tools/actions/workflows/ci.yml)
25
+ [![Coverage](https://codecov.io/gh/a-earthperson/web-mcp-tools/branch/main/graph/badge.svg)](https://codecov.io/gh/a-earthperson/web-mcp-tools)
26
+ [![CI](https://img.shields.io/github/checks-status/a-earthperson/web-mcp-tools/main?checkName=CI&label=CI)](https://github.com/a-earthperson/web-mcp-tools/actions/workflows/ci.yml)
27
+ [![PyPI](https://img.shields.io/pypi/v/web-mcp-tools)](https://pypi.org/project/web-mcp-tools/)
28
+ [![GHCR Tags](https://ghcr-badge.egpl.dev/a-earthperson/web-mcp-tools/tags?ignore=latest,sha256*&n=3&label=ghcr%20tags)](https://github.com/a-earthperson/web-mcp-tools/pkgs/container/web-mcp-tools)
29
+
30
+ Standalone MCP server and Python package for Firecrawl-backed web scraping with optional browser-cookie request headers.
31
+
32
+ ## Install
33
+
34
+ ```bash
35
+ uv sync --extra dev
36
+ ```
37
+
38
+ ## Configuration
39
+
40
+ - `FIRECRAWL_BASE_URL`: Firecrawl API base URL.
41
+ - `FIRECRAWL_API_KEY` or `FIRECRAWL_API_KEY_FILE`: Firecrawl API credential.
42
+ - `WEB_MCP_TOOLS_COOKIES_FROM_BROWSER`: Optional browser selector for authenticated scrapes, for example `safari` or `safari:/path/to/Cookies.binarycookies`.
43
+ - `WEB_MCP_TOOLS_COOKIES_MODE`: `off`, `best_effort`, or `required`.
44
+ - `WEB_MCP_TOOLS_HOST`: HTTP bind host for MCP HTTP transports.
45
+ - `WEB_MCP_TOOLS_PORT`: HTTP bind port for MCP HTTP transports.
46
+ - `WEB_MCP_TOOLS_STREAMABLE_HTTP_PATH`: Streamable HTTP endpoint path. Defaults to `/mcp`.
47
+
48
+ ## Run
49
+
50
+ Run over stdio:
51
+
52
+ ```bash
53
+ uv run web-mcp-tools mcp
54
+ ```
55
+
56
+ Run over Streamable HTTP:
57
+
58
+ ```bash
59
+ uv run web-mcp-tools mcp --transport streamable-http --host 0.0.0.0 --port 8000
60
+ ```
61
+
62
+ The HTTP server exposes health probes at `/health` and `/healthz`, and the default Streamable HTTP MCP endpoint at `/mcp`.
63
+
64
+ Compatibility health-only server:
65
+
66
+ ```bash
67
+ uv run web-mcp-tools serve --host 127.0.0.1 --port 8000
68
+ ```
69
+
70
+ ## Build
71
+
72
+ ```bash
73
+ uv build
74
+ ```
75
+
76
+ ## Test
77
+
78
+ ```bash
79
+ uv run pytest
80
+ ```
@@ -0,0 +1,60 @@
1
+ # web-mcp-tools
2
+
3
+ [![Lint](https://img.shields.io/github/checks-status/a-earthperson/web-mcp-tools/main?checkName=Lint&label=lint)](https://github.com/a-earthperson/web-mcp-tools/actions/workflows/ci.yml)
4
+ [![Tests](https://img.shields.io/github/checks-status/a-earthperson/web-mcp-tools/main?checkName=Tests&label=tests)](https://github.com/a-earthperson/web-mcp-tools/actions/workflows/ci.yml)
5
+ [![Coverage](https://codecov.io/gh/a-earthperson/web-mcp-tools/branch/main/graph/badge.svg)](https://codecov.io/gh/a-earthperson/web-mcp-tools)
6
+ [![CI](https://img.shields.io/github/checks-status/a-earthperson/web-mcp-tools/main?checkName=CI&label=CI)](https://github.com/a-earthperson/web-mcp-tools/actions/workflows/ci.yml)
7
+ [![PyPI](https://img.shields.io/pypi/v/web-mcp-tools)](https://pypi.org/project/web-mcp-tools/)
8
+ [![GHCR Tags](https://ghcr-badge.egpl.dev/a-earthperson/web-mcp-tools/tags?ignore=latest,sha256*&n=3&label=ghcr%20tags)](https://github.com/a-earthperson/web-mcp-tools/pkgs/container/web-mcp-tools)
9
+
10
+ Standalone MCP server and Python package for Firecrawl-backed web scraping with optional browser-cookie request headers.
11
+
12
+ ## Install
13
+
14
+ ```bash
15
+ uv sync --extra dev
16
+ ```
17
+
18
+ ## Configuration
19
+
20
+ - `FIRECRAWL_BASE_URL`: Firecrawl API base URL.
21
+ - `FIRECRAWL_API_KEY` or `FIRECRAWL_API_KEY_FILE`: Firecrawl API credential.
22
+ - `WEB_MCP_TOOLS_COOKIES_FROM_BROWSER`: Optional browser selector for authenticated scrapes, for example `safari` or `safari:/path/to/Cookies.binarycookies`.
23
+ - `WEB_MCP_TOOLS_COOKIES_MODE`: `off`, `best_effort`, or `required`.
24
+ - `WEB_MCP_TOOLS_HOST`: HTTP bind host for MCP HTTP transports.
25
+ - `WEB_MCP_TOOLS_PORT`: HTTP bind port for MCP HTTP transports.
26
+ - `WEB_MCP_TOOLS_STREAMABLE_HTTP_PATH`: Streamable HTTP endpoint path. Defaults to `/mcp`.
27
+
28
+ ## Run
29
+
30
+ Run over stdio:
31
+
32
+ ```bash
33
+ uv run web-mcp-tools mcp
34
+ ```
35
+
36
+ Run over Streamable HTTP:
37
+
38
+ ```bash
39
+ uv run web-mcp-tools mcp --transport streamable-http --host 0.0.0.0 --port 8000
40
+ ```
41
+
42
+ The HTTP server exposes health probes at `/health` and `/healthz`, and the default Streamable HTTP MCP endpoint at `/mcp`.
43
+
44
+ Compatibility health-only server:
45
+
46
+ ```bash
47
+ uv run web-mcp-tools serve --host 127.0.0.1 --port 8000
48
+ ```
49
+
50
+ ## Build
51
+
52
+ ```bash
53
+ uv build
54
+ ```
55
+
56
+ ## Test
57
+
58
+ ```bash
59
+ uv run pytest
60
+ ```
@@ -0,0 +1,49 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "web-mcp-tools"
7
+ dynamic = ["version"]
8
+ description = "Firecrawl-backed web scrape MCP server with browser cookie support"
9
+ requires-python = ">=3.14,<3.15"
10
+ readme = "README.md"
11
+ authors = [
12
+ { name = "Arjun Earthperson", email = "mail@earthperson.org" },
13
+ ]
14
+ dependencies = [
15
+ "firecrawl>=4.22.1",
16
+ "mcp>=1.27.0",
17
+ "pydantic>=2.11",
18
+ "typing_extensions>=4.0.0",
19
+ ]
20
+
21
+ [project.optional-dependencies]
22
+ dev = [
23
+ "pytest>=8.0.0",
24
+ "pytest-asyncio>=0.24.0",
25
+ "pytest-cov>=5.0.0",
26
+ "ruff>=0.6.0",
27
+ "black>=26.0.0",
28
+ "nuitka>=4.0.1",
29
+ ]
30
+
31
+ [project.scripts]
32
+ web-mcp-tools = "web_mcp_tools.__main__:main"
33
+
34
+ [tool.pytest.ini_options]
35
+ asyncio_mode = "auto"
36
+ testpaths = ["tests"]
37
+ pythonpath = ["src"]
38
+
39
+ [tool.black]
40
+ target-version = ["py314"]
41
+
42
+ [tool.hatch.version]
43
+ path = "src/web_mcp_tools/__init__.py"
44
+
45
+ [tool.hatch.build.targets.wheel]
46
+ packages = ["src/web_mcp_tools"]
47
+
48
+ [tool.hatch.build.targets.sdist]
49
+ include = ["src/web_mcp_tools/**"]
@@ -0,0 +1,5 @@
1
+ """Firecrawl-backed web scrape MCP tools with browser cookie support."""
2
+
3
+ __all__ = ["__version__"]
4
+
5
+ __version__ = "0.0.1"
@@ -0,0 +1,7 @@
1
+ """CLI entrypoint for web-mcp-tools."""
2
+
3
+ from web_mcp_tools.cli import main
4
+
5
+
6
+ if __name__ == "__main__":
7
+ main()