<!-- .github/pull_request_template.md --> ## Description <!-- Provide a clear description of the changes in this PR --> ## 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 <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **Dependency Update** - Downgraded `mcp` package version from 1.2.0 to 1.1.3 - Updated `cognee` dependency to include additional features with `cognee[codegraph]` - **New Features** - Introduced a new tool, "codify", for transforming codebases into knowledge graphs - Enhanced the existing "search" tool to accept a new parameter for search type - **Improvements** - Streamlined search functionality with a new modular approach - Added new asynchronous function for retrieving and formatting code parts - **Documentation** - Updated import paths for `SearchType` in various modules and tests to reflect structural changes - **Code Cleanup** - Removed legacy search module and associated classes/functions - Refined data transfer object classes for consistency and clarity <!-- end of auto-generated comment: release notes by coderabbit.ai --> --------- Co-authored-by: Boris Arzentar <borisarzentar@gmail.com>
28 lines
496 B
TOML
28 lines
496 B
TOML
[project]
|
|
name = "cognee-mcp"
|
|
version = "0.1.0"
|
|
description = "A MCP server project"
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
|
|
dependencies = [
|
|
"cognee[codegraph]",
|
|
"mcp==1.1.3",
|
|
]
|
|
|
|
[[project.authors]]
|
|
name = "Rita Aleksziev"
|
|
email = "rita@topoteretes.com"
|
|
|
|
[build-system]
|
|
requires = [ "hatchling", ]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src"]
|
|
|
|
[tool.uv.sources]
|
|
cognee = { path = "../../cognee" }
|
|
|
|
[project.scripts]
|
|
cognee = "src:main"
|