Memory MCP Server

[build-system] requires = ["hatchling"] build-backend = "hatchling.build" [project] name = "memory-mcp-server" version = "0.2.0" description = "MCP server for managing Claude's memory and knowledge graph" requires-python = ">=3.12" dependencies = [ "aiofiles", "loguru>=0.7.3", "mcp[cli]>=1.2.0", "memory-mcp-server", "ruff>=0.9.4", "thefuzz[speedup]>=0.20.0", # Includes python-Levenshtein for performance ] [project.optional-dependencies] test = ["pytest", "pytest-asyncio", "pytest-cov"] [tool.pytest.ini_options] asyncio_mode = "auto" testpaths = ["tests"] python_files = ["test_*.py"] addopts = "-q -ra" [tool.mypy] python_version = "3.12" warn_return_any = true warn_unused_configs = true disallow_untyped_defs = true disallow_incomplete_defs = true check_untyped_defs = true disallow_untyped_decorators = true no_implicit_optional = true warn_redundant_casts = true warn_unused_ignores = true warn_no_return = true warn_unreachable = true plugins = [] [[tool.mypy.overrides]] module = ["pytest.*", "mcp.*", "aiofiles.*"] ignore_missing_imports = true [[tool.mypy.overrides]] module = "tests.*" disallow_untyped_decorators = false [tool.ruff] select = ["E", "F", "B", "I"] ignore = [] line-length = 88 target-version = "py312" [tool.ruff.per-file-ignores] "__init__.py" = ["F401"]