searchfetch 3.3.2__tar.gz → 3.3.3__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.
- {searchfetch-3.3.2/searchfetch.egg-info → searchfetch-3.3.3}/PKG-INFO +3 -3
- {searchfetch-3.3.2 → searchfetch-3.3.3}/pyproject.toml +3 -3
- {searchfetch-3.3.2 → searchfetch-3.3.3/searchfetch.egg-info}/PKG-INFO +3 -3
- {searchfetch-3.3.2 → searchfetch-3.3.3}/searchfetch.egg-info/requires.txt +2 -2
- {searchfetch-3.3.2 → searchfetch-3.3.3}/server.py +3 -5
- {searchfetch-3.3.2 → searchfetch-3.3.3}/LICENSE +0 -0
- {searchfetch-3.3.2 → searchfetch-3.3.3}/MANIFEST.in +0 -0
- {searchfetch-3.3.2 → searchfetch-3.3.3}/README.md +0 -0
- {searchfetch-3.3.2 → searchfetch-3.3.3}/searchfetch.egg-info/SOURCES.txt +0 -0
- {searchfetch-3.3.2 → searchfetch-3.3.3}/searchfetch.egg-info/dependency_links.txt +0 -0
- {searchfetch-3.3.2 → searchfetch-3.3.3}/searchfetch.egg-info/entry_points.txt +0 -0
- {searchfetch-3.3.2 → searchfetch-3.3.3}/searchfetch.egg-info/top_level.txt +0 -0
- {searchfetch-3.3.2 → searchfetch-3.3.3}/setup.cfg +0 -0
- {searchfetch-3.3.2 → searchfetch-3.3.3}/templates/crates-package.json +0 -0
- {searchfetch-3.3.2 → searchfetch-3.3.3}/templates/devto.json +0 -0
- {searchfetch-3.3.2 → searchfetch-3.3.3}/templates/docker-hub.json +0 -0
- {searchfetch-3.3.2 → searchfetch-3.3.3}/templates/docs-page.json +0 -0
- {searchfetch-3.3.2 → searchfetch-3.3.3}/templates/docs-rs.json +0 -0
- {searchfetch-3.3.2 → searchfetch-3.3.3}/templates/duckduckgo-search.json +0 -0
- {searchfetch-3.3.2 → searchfetch-3.3.3}/templates/github-issue.json +0 -0
- {searchfetch-3.3.2 → searchfetch-3.3.3}/templates/github-repo.json +0 -0
- {searchfetch-3.3.2 → searchfetch-3.3.3}/templates/gitlab.json +0 -0
- {searchfetch-3.3.2 → searchfetch-3.3.3}/templates/go-pkg.json +0 -0
- {searchfetch-3.3.2 → searchfetch-3.3.3}/templates/google-search.json +0 -0
- {searchfetch-3.3.2 → searchfetch-3.3.3}/templates/javadoc.json +0 -0
- {searchfetch-3.3.2 → searchfetch-3.3.3}/templates/mdn-web-docs.json +0 -0
- {searchfetch-3.3.2 → searchfetch-3.3.3}/templates/npm-package.json +0 -0
- {searchfetch-3.3.2 → searchfetch-3.3.3}/templates/pypi-package.json +0 -0
- {searchfetch-3.3.2 → searchfetch-3.3.3}/templates/raw.json +0 -0
- {searchfetch-3.3.2 → searchfetch-3.3.3}/templates/reddit.json +0 -0
- {searchfetch-3.3.2 → searchfetch-3.3.3}/templates/wikipedia.json +0 -0
- {searchfetch-3.3.2 → searchfetch-3.3.3}/templates/youtube.json +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: searchfetch
|
|
3
|
-
Version: 3.3.
|
|
3
|
+
Version: 3.3.3
|
|
4
4
|
Summary: A maximum fault-tolerant, stealth-enabled MCP server for web searching and fetching.
|
|
5
5
|
Author: Max
|
|
6
6
|
License-Expression: MIT
|
|
@@ -11,12 +11,12 @@ Requires-Python: >=3.10
|
|
|
11
11
|
Description-Content-Type: text/markdown
|
|
12
12
|
License-File: LICENSE
|
|
13
13
|
Requires-Dist: mcp>=2.0.0
|
|
14
|
-
Requires-Dist: cloakbrowser>=0.5.
|
|
14
|
+
Requires-Dist: cloakbrowser>=0.5.5
|
|
15
15
|
Requires-Dist: beautifulsoup4>=4.15.0
|
|
16
16
|
Requires-Dist: markdownify>=1.2.3
|
|
17
17
|
Provides-Extra: dev
|
|
18
18
|
Requires-Dist: pytest>=9.1.1; extra == "dev"
|
|
19
|
-
Requires-Dist: ruff>=0.16.
|
|
19
|
+
Requires-Dist: ruff>=0.16.1; extra == "dev"
|
|
20
20
|
Dynamic: license-file
|
|
21
21
|
|
|
22
22
|
# SearchFetch (MCP Server)
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "searchfetch"
|
|
7
|
-
version = "3.3.
|
|
7
|
+
version = "3.3.3"
|
|
8
8
|
description = "A maximum fault-tolerant, stealth-enabled MCP server for web searching and fetching."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = "MIT"
|
|
@@ -15,7 +15,7 @@ authors =[
|
|
|
15
15
|
keywords =["mcp", "search", "fetch", "llm", "ai", "agent", "stealth"]
|
|
16
16
|
dependencies =[
|
|
17
17
|
"mcp>=2.0.0",
|
|
18
|
-
"cloakbrowser>=0.5.
|
|
18
|
+
"cloakbrowser>=0.5.5",
|
|
19
19
|
"beautifulsoup4>=4.15.0",
|
|
20
20
|
"markdownify>=1.2.3",
|
|
21
21
|
]
|
|
@@ -23,7 +23,7 @@ dependencies =[
|
|
|
23
23
|
[project.optional-dependencies]
|
|
24
24
|
dev = [
|
|
25
25
|
"pytest>=9.1.1",
|
|
26
|
-
"ruff>=0.16.
|
|
26
|
+
"ruff>=0.16.1",
|
|
27
27
|
]
|
|
28
28
|
|
|
29
29
|
[project.urls]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: searchfetch
|
|
3
|
-
Version: 3.3.
|
|
3
|
+
Version: 3.3.3
|
|
4
4
|
Summary: A maximum fault-tolerant, stealth-enabled MCP server for web searching and fetching.
|
|
5
5
|
Author: Max
|
|
6
6
|
License-Expression: MIT
|
|
@@ -11,12 +11,12 @@ Requires-Python: >=3.10
|
|
|
11
11
|
Description-Content-Type: text/markdown
|
|
12
12
|
License-File: LICENSE
|
|
13
13
|
Requires-Dist: mcp>=2.0.0
|
|
14
|
-
Requires-Dist: cloakbrowser>=0.5.
|
|
14
|
+
Requires-Dist: cloakbrowser>=0.5.5
|
|
15
15
|
Requires-Dist: beautifulsoup4>=4.15.0
|
|
16
16
|
Requires-Dist: markdownify>=1.2.3
|
|
17
17
|
Provides-Extra: dev
|
|
18
18
|
Requires-Dist: pytest>=9.1.1; extra == "dev"
|
|
19
|
-
Requires-Dist: ruff>=0.16.
|
|
19
|
+
Requires-Dist: ruff>=0.16.1; extra == "dev"
|
|
20
20
|
Dynamic: license-file
|
|
21
21
|
|
|
22
22
|
# SearchFetch (MCP Server)
|
|
@@ -11,7 +11,7 @@ from markdownify import markdownify as md
|
|
|
11
11
|
from mcp.server import MCPServer
|
|
12
12
|
from playwright.async_api import TimeoutError as PlaywrightTimeoutError
|
|
13
13
|
|
|
14
|
-
__version__ = "3.3.
|
|
14
|
+
__version__ = "3.3.3"
|
|
15
15
|
|
|
16
16
|
mcp = MCPServer("searchfetch", version=__version__)
|
|
17
17
|
|
|
@@ -199,15 +199,13 @@ def _load_builtin_templates():
|
|
|
199
199
|
|
|
200
200
|
Searches (in order):
|
|
201
201
|
1. templates/ adjacent to server.py (development / editable install)
|
|
202
|
-
2. templates/
|
|
203
|
-
3. templates/ under sys.prefix (data_files wheel install)
|
|
202
|
+
2. templates/ under sys.prefix (data_files wheel install)
|
|
204
203
|
|
|
205
204
|
Returns a dict of template name -> template data, preserving insertion
|
|
206
205
|
order sorted by the "order" field in each template.
|
|
207
206
|
"""
|
|
208
207
|
search_paths = [
|
|
209
208
|
Path(__file__).resolve().parent / "templates",
|
|
210
|
-
Path.cwd() / "templates",
|
|
211
209
|
Path(sys.prefix) / "templates",
|
|
212
210
|
]
|
|
213
211
|
|
|
@@ -218,7 +216,7 @@ def _load_builtin_templates():
|
|
|
218
216
|
break
|
|
219
217
|
|
|
220
218
|
if templates_dir is None:
|
|
221
|
-
searched = "', '".join(str(p) for p in search_paths
|
|
219
|
+
searched = "', '".join(str(p) for p in search_paths)
|
|
222
220
|
raise FileNotFoundError(f"Templates directory not found. Searched: '{searched}'")
|
|
223
221
|
|
|
224
222
|
json_files = sorted(templates_dir.glob("*.json"))
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|