pyproject.toml•1.49 kB
[project]
name = "postgres-mcp-allaccess"
version = "1.0.0"
description = "Production-ready PostgreSQL MCP server with global connection pooling, PgBouncer integration, and automatic password rotation for AWS RDS"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "Apache-2.0"}
authors = [
{name = "YT Build", email = "contact@ytbuild.com"},
]
keywords = ["mcp", "postgresql", "database", "sql", "model-context-protocol", "pgbouncer", "connection-pooling", "aws-rds", "password-rotation"]
dependencies = [
"mcp>=1.1.0",
"psycopg[binary]>=3.2.0",
"psycopg-pool>=3.2.0",
"python-dotenv>=1.0.0",
"boto3>=1.28.0",
"starlette>=0.37.0",
"uvicorn[standard]>=0.27.0",
"sse-starlette>=1.8.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"pytest-asyncio>=0.21.0",
"black>=23.0.0",
"ruff>=0.1.0",
]
[project.urls]
Homepage = "https://github.com/yty-build/postgres_mcp_allaccess"
Repository = "https://github.com/yty-build/postgres_mcp_allaccess"
Issues = "https://github.com/yty-build/postgres_mcp_allaccess/issues"
Documentation = "https://github.com/yty-build/postgres_mcp_allaccess#readme"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.black]
line-length = 100
target-version = ['py310']
[tool.ruff]
line-length = 100
select = ["E", "F", "I", "N", "UP", "B", "C4", "SIM", "RUF"]
ignore = ["E501"]
[project.scripts]
postgres-mcp-allaccess = "postgres_mcp_allaccess.server:main"