[project]
name = "combined-mcp-server"
version = "1.0.0"
description = "Combined MCP Server with Redshift query capabilities and Knowledgebase vector store"
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
authors = [{ name = "MCP Server Team" }]
dependencies = [
"mcp[cli]>=1.0.0",
"boto3>=1.35.0",
"psycopg[binary,pool]>=3.2.0",
"pgvector>=0.3.0",
"pydantic>=2.0.0",
"pydantic-settings>=2.0.0",
"python-dotenv>=1.0.0",
"aiohttp>=3.9.0",
"structlog>=24.0.0",
"starlette>=0.38.0",
"uvicorn>=0.30.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.24.0",
"pytest-cov>=5.0.0",
"moto[all]>=5.0.0",
"ruff>=0.5.0",
"mypy>=1.10.0",
"boto3-stubs[redshift,s3,secretsmanager,bedrock-runtime]>=1.35.0",
]
[project.scripts]
mcp-server = "combined_mcp_server.main:main"
mcp-server-http = "combined_mcp_server.main:main_http"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/combined_mcp_server"]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP", "B", "C4", "SIM", "RUF"]
ignore = ["E501"]
[tool.mypy]
python_version = "3.11"
strict = true
warn_return_any = true
warn_unused_configs = true
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
addopts = "-v --tb=short"
markers = [
"integration: marks tests as integration tests (deselect with '-m \"not integration\"')",
]