[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "mongo-mcp"
version = "0.1.3"
description = "MCP service for MongoDB operations"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"fastmcp>=0.3.4",
"pymongo>=4.5.0",
]
authors = [
{name = "allenZhang", email = "allenzhang570@gmail.com"}
]
[project.urls]
Homepage = "https://github.com/441126098/mongo-mcp"
Source = "https://github.com/441126098/mongo-mcp"
Tracker = "https://github.com/441126098/mongo-mcp/issues"
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"black>=23.7.0",
"isort>=5.12.0",
"mypy>=1.5.1",
]
[project.scripts]
mongo-mcp = "mongo_mcp.__main__:main"
[tool.black]
line-length = 88
[tool.isort]
profile = "black"
[tool.hatch.build.targets.wheel]
packages = ["src/mongo_mcp"]
[[tool.uv.index]]
default = true
[dependency-groups]
dev = [
"black>=25.1.0",
"isort>=6.0.1",
"mypy>=1.15.0",
"pytest>=8.3.5",
]