[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "heventure-search-mcp"
version = "1.1.1"
description = "一个无需API key的网页搜索MCP服务器,支持DuckDuckGo和必应搜索"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "MIT"}
authors = [
{name = "HughesCuit"},
]
keywords = ["mcp", "search", "web", "duckduckgo", "bing", "api"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Internet :: WWW/HTTP :: Indexing/Search",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"mcp>=1.0.0",
"aiohttp>=3.8.0",
"beautifulsoup4>=4.11.0",
"lxml>=4.9.0",
"pydantic>=2.0.0",
]
[project.urls]
Homepage = "https://github.com/HughesCuit/heventure-search-mcp"
Repository = "https://github.com/HughesCuit/heventure-search-mcp"
Issues = "https://github.com/HughesCuit/heventure-search-mcp/issues"
Documentation = "https://github.com/HughesCuit/heventure-search-mcp#readme"
[project.scripts]
heventure-search-mcp = "server:main"
[tool.setuptools]
py-modules = ["server"]
include-package-data = true
[tool.setuptools.package-data]
"*" = ["*.md", "*.txt", "*.json", "*.sh"]
[tool.uv]
dev-dependencies = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"black>=23.0.0",
"flake8>=6.0.0",
"mypy>=1.0.0",
]