[build-system] requires = ["setuptools>=64", "wheel"] build-backend = "setuptools.build_meta" [project] name = "sibyl-memory-mcp" version = "0.2.1" description = "MCP server for Sibyl Memory Plugin: wraps the local SQLite + FTS5 memory engine and exposes it to MCP-compatible agents (Claude Code, Codex, Cursor, Continue, anything that speaks MCP)." readme = "README.md" requires-python = ">=3.10" license = { text = "MIT" } authors = [{ name = "SIBYL, Sibyl Labs LLC", email = "sibyl@sibyllabs.org" }] keywords = ["mcp", "model-context-protocol", "memory", "agent", "claude", "claude-code", "codex", "sibyl"] classifiers = [ "Programming Language :: Python :: 3", "Programming Language :: Python :: 3 :: Only", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "License :: OSI Approved :: MIT License", "Operating System :: POSIX :: Linux", "Operating System :: MacOS", "Topic :: Software Development :: Libraries", ] dependencies = [ "mcp>=1.0.0,<2", "sibyl-memory-client>=0.8.1", "sibyl-memory-hermes>=0.4.0", ] [project.scripts] sibyl-memory-mcp = "sibyl_memory_mcp.__main__:main" [project.urls] Homepage = "https://sibyllabs.org/plugin" Documentation = "https://docs.sibyllabs.org/memory/integrations" Repository = "https://github.com/Sibyl-Labs/Sibyl-Memory" [tool.setuptools.packages.find] where = ["src"]