-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (28 loc) · 781 Bytes
/
pyproject.toml
File metadata and controls
32 lines (28 loc) · 781 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "searchfetch"
version = "2.0.0"
description = "A maximum fault-tolerant, stealth-enabled MCP server for web searching and fetching."
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.10"
authors =[
{ name = "Max" }
]
keywords =["mcp", "search", "fetch", "llm", "ai", "agent", "stealth"]
dependencies =[
"mcp>=1.27.1",
"cloakbrowser>=0.3.26",
"beautifulsoup4>=4.12.0",
"markdownify>=0.11.0"
]
[project.urls]
Homepage = "https://github.com/maxylev/searchfetch"
Repository = "https://github.com/maxylev/searchfetch"
[project.scripts]
mcp-searchfetch = "server:main"
searchfetch = "server:main"
[tool.setuptools]
py-modules =["server"]