pyproject.toml•1.9 kB
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "mcp-db-filesystem"
version = "1.1.4"
description = "Simple and efficient MCP server for multi-database (SQL Server, MySQL) and Redis access with filesystem operations"
authors = [
{name = "PJ", email = "peng.it@qq.com"}
]
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.11"
keywords = ["mcp", "mysql", "sqlserver", "redis", "filesystem", "database", "cross-platform", "server"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Database",
"Topic :: System :: Filesystems",
"Operating System :: OS Independent",
]
dependencies = [
"mcp>=1.9.3",
"pyodbc>=5.0.0",
"sqlalchemy>=2.0.0",
"pymysql>=1.1.0",
"redis>=5.0.0",
"python-dotenv>=1.0.0",
"aiofiles>=23.0.0",
"pydantic>=2.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"pytest-cov>=4.0.0",
"black>=23.0.0",
"isort>=5.12.0",
"flake8>=6.0.0",
"mypy>=1.0.0",
"twine>=6.1.0",
]
[project.scripts]
mcp-db-filesystem = "mcp_db_filesystem.__main__:main"
[project.urls]
Homepage = "https://github.com/ppengit/mcp-db-filesystem"
Repository = "https://github.com/ppengit/mcp-db-filesystem"
Issues = "https://github.com/ppengit/mcp-db-filesystem/issues"
[tool.hatch.build.targets.wheel]
packages = ["src/mcp_db_filesystem"]
[tool.hatch.build.targets.sdist]
include = [
"/src",
"/tests",
"/README.md",
"/LICENSE",
"/pyproject.toml",
]
# Simple and efficient MCP server configuration