[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "documentation-search-enhanced"
version = "1.9.0"
description = "Enhanced MCP server for searching documentation with OSINT vulnerability scanning, security analysis, and AWS-style deployment"
readme = "README.md"
license = "MIT"
requires-python = ">=3.12"
authors = [
{ name = "Anton Mishel", email = "your-email@example.com" },
]
keywords = ["mcp", "documentation", "search", "fastapi", "langchain", "ai", "assistant", "security", "vulnerability", "osint", "osv"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Documentation",
"Topic :: Internet :: WWW/HTTP :: Indexing/Search",
]
dependencies = [
"beautifulsoup4>=4.13.4",
"httpx>=0.28.1",
"mcp[cli]>=1.23.0",
"python-dotenv>=1.0.0",
"PyYAML>=6.0.1",
"playwright>=1.40.0",
"pydantic>=2.0",
]
[project.urls]
Homepage = "https://github.com/anton-prosterity/documentation-search-mcp"
Repository = "https://github.com/anton-prosterity/documentation-search-mcp"
Issues = "https://github.com/anton-prosterity/documentation-search-mcp/issues"
[project.scripts]
documentation-search-enhanced = "documentation_search_enhanced.main:main"
[project.optional-dependencies]
vector = [
"sentence-transformers>=2.2.0",
"faiss-cpu>=1.7.4",
"numpy>=1.24.0",
]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"black>=23.0.0",
"ruff>=0.1.0",
"twine>=4.0.0",
]
[tool.hatch.build.targets.wheel]
packages = ["src/documentation_search_enhanced"]
[tool.hatch.build.targets.sdist]
include = [
"src/documentation_search_enhanced",
"config.json",
"README.md",
"LICENSE",
]
[dependency-groups]
dev = [
"twine>=6.1.0",
]
[tool.pytest.ini_options]
minversion = "7.0"
addopts = "-ra"
norecursedirs = [
".git",
".venv",
".uv-cache",
"build",
"dist",
"pytest-test-project",
"samples",
"my-test-fastapi-app",
]