[project]
name = "langgraph-deep-search-mcp-server"
version = "0.1.0"
description = "Langgraph Deep Search MCP Server using LangGraph"
authors = [
{name = "Ryota Ozawa", email = "ozawar@novelworks.jp"}
]
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
dependencies = [
"mcp[cli]>=1.2.0",
"langgraph>=0.2.6",
"langchain>=0.3.19",
"langchain-google-genai",
"python-dotenv>=1.0.1",
"google-genai",
"pydantic>=2.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"pytest-cov>=4.1.0",
"black>=24.0.0",
"isort>=5.12.0",
"mypy>=1.8.0",
"ruff>=0.1.0",
"pip-audit>=2.6.0",
]
[project.scripts]
langgraph-deep-search = "deep_search_mcp.mcp_server:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/deep_search_mcp"]
[tool.black]
line-length = 88
target-version = ['py310']
[tool.isort]
profile = "black"
multi_line_output = 3
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
[tool.ruff]
line-length = 88
target-version = "py310"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
asyncio_mode = "auto"