[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "mcp-hivemind-server"
version = "1.0.3"
description = "Intelligent MCP server that creates living documentation for codebases with AI-enriched context"
readme = "README.md"
license = {file = "LICENSE"}
authors = [
{name = "Jahanzaib Kaleem", email = "jahanzaibkaleem@example.com"}
]
keywords = [
"mcp",
"model-context-protocol",
"documentation",
"codebase",
"ai",
"llm",
"code-analysis",
"tree-sitter"
]
classifiers = [
"Development Status :: 4 - Beta",
"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 :: Documentation",
"Topic :: Software Development :: Code Generators",
]
requires-python = ">=3.11"
dependencies = [
"mcp>=0.9.0",
"tree-sitter>=0.21.0",
"tree-sitter-languages>=1.10.0",
"aiofiles>=23.0.0",
"pyyaml>=6.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
]
[project.urls]
Homepage = "https://github.com/Jahanzaib-Kaleem/hive-mind-mcp"
Repository = "https://github.com/Jahanzaib-Kaleem/hive-mind-mcp"
Issues = "https://github.com/Jahanzaib-Kaleem/hive-mind-mcp/issues"
[project.scripts]
hive-mind = "server:main"
[tool.hatch.build.targets.wheel]
packages = ["."]