cognee/cognee-mcp/pyproject.toml
Igor Ilic 966e337500
feat: add MCP check status tool [COG-1784] (#793)
<!-- .github/pull_request_template.md -->

## Description
Added tools to check current cognify and codify status

## DCO Affirmation
I affirm that all code in every commit of this pull request conforms to
the terms of the Topoteretes Developer Certificate of Origin.
2025-05-13 12:09:14 -04:00

37 lines
806 B
TOML

[project]
name = "cognee-mcp"
version = "0.3.0"
description = "A MCP server project"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
# For local cognee repo usage remove comment bellow and add absolute path to cognee
#"cognee[postgres,codegraph,gemini,huggingface] @ file:/Users/<username>/Desktop/cognee",
"cognee[postgres,codegraph,gemini,huggingface]==0.1.40",
"fastmcp>=1.0",
"mcp==1.5.0",
"uv>=0.6.3",
]
[[project.authors]]
name = "Boris Arzentar"
email = "boris@topoteretes.com"
[build-system]
requires = [ "hatchling", ]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src"]
[dependency-groups]
dev = [
"debugpy>=1.8.12",
]
[tool.hatch.metadata]
allow-direct-references = true
[project.scripts]
cognee = "src:main"