[project]
name = "molt-mcp"
version = "0.1.0"
description = "MCP server for molt-md encrypted markdown document hosting"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [
{ name = "molt-md contributors" }
]
keywords = ["mcp", "molt-md", "markdown", "encryption", "llm"]
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 :: Software Development :: Libraries",
]
dependencies = [
"mcp>=1.0.0",
"httpx>=0.27.0",
]
[project.urls]
Homepage = "https://github.com/bndkts/molt-md-mcp"
Repository = "https://github.com/bndkts/molt-md-mcp"
Issues = "https://github.com/bndkts/molt-md-mcp/issues"
[project.scripts]
molt-mcp = "molt_mcp.server:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.24.0",
"respx>=0.22.0",
"ruff>=0.3.0",
"mypy>=1.8.0",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"