File size: 1,608 Bytes
97def2d 71e58d3 97def2d 6b1c585 97def2d 484ff88 97def2d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 | [build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "mcp-database-universal"
version = "0.1.3"
description = "MCP Database Server — reasoning interface for databases, not a thin wrapper"
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [
{ name = "mcp-database-universal contributors" },
]
keywords = ["mcp", "database", "sqlite", "postgresql", "mysql", "model-context-protocol", "ai-tools"]
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",
"Programming Language :: Python :: 3.13",
"Topic :: Database",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"mcp[cli]>=2.0.0",
]
[project.optional-dependencies]
postgres = ["psycopg[binary]>=3.1.0"]
mysql = ["pymysql>=1.1.0"]
mssql = ["pyodbc>=5.1.0"]
all = [
"psycopg[binary]>=3.1.0",
"pymysql>=1.1.0",
"pyodbc>=5.1.0",
]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
]
[project.urls]
Homepage = "https://github.com/kobramantra-debug/mcp-database-server"
Repository = "https://github.com/kobramantra-debug/mcp-database-server"
Issues = "https://github.com/kobramantra-debug/mcp-database-server/issues"
[tool.hatch.build.targets.wheel]
packages = ["mcp_database_universal"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
|