[project]
name = "mcp-webscout"
version = "0.1.0"
description = "MCP server for web search (DuckDuckGo) and intelligent content extraction"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
authors = [
{name = "Claude Code"}
]
keywords = ["mcp", "mcp-server", "webscout", "search", "web-scraping", "content-extraction"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"mcp>=1.0.0",
"duckduckgo-search>=3.0.0",
"requests>=2.32.0",
"beautifulsoup4>=4.12.0",
"openai>=1.30.0",
"crawl4ai>=0.5.0",
]
[project.optional-dependencies]
dev = [
"pyright>=1.1.378",
"ruff>=0.6.0",
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
]
[project.scripts]
mcp-webscout = "mcp_webscout:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/mcp_webscout"]
[tool.ruff]
target-version = "py310"
line-length = 120
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # Pyflakes
"I", # isort
"N", # pep8-naming
"D", # pydocstyle
"UP", # pyupgrade
]
ignore = [
"D100", # Missing docstring in public module
"D104", # Missing docstring in public package
]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.pyright]
pythonVersion = "3.10"
strict = ["src/mcp_webscout"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
asyncio_mode = "auto"