Skip to content
8 changes: 8 additions & 0 deletions cognee-mcp/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,11 @@ allow-direct-references = true
[project.scripts]
cognee = "src:main"
cognee-mcp = "src:main_mcp"

[tool.pyright]
typeCheckingMode = "basic"
reportMissingImports = "error"
reportUndefinedVariable = "error"
reportMissingModuleSource = "error"
reportUnusedImport = "warning"
reportUnusedVariable = "warning"
52 changes: 0 additions & 52 deletions cognee-mcp/src/client.py

This file was deleted.

3 changes: 3 additions & 0 deletions cognee-mcp/src/clients/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from .cognee_client import CogneeClient

__all__ = ["CogneeClient"]
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
logger = get_logger()


# TODO(daulet) COG-3311: I'm exploring OpenAPI json client generation for backend
class CogneeClient:
"""
Unified client for interacting with Cognee via direct calls or HTTP API.
Expand Down
Empty file.
120 changes: 0 additions & 120 deletions cognee-mcp/src/codingagents/coding_rule_associations.py

This file was deleted.

Loading
Loading