[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "graphiti-memory"
version = "0.2.0"
description = "MCP server for Graphiti knowledge graph operations with Neo4j integration"
readme = "README.md"
license = {text = "MIT"}
authors = [
{name = "Alan Shum", email = "alankyshum@users.noreply.github.com"}
]
keywords = ["mcp", "graphiti", "neo4j", "knowledge-graph", "memory", "mcp-server"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
]
requires-python = ">=3.10"
dependencies = [
"neo4j>=5.0.0,<7.0.0",
"graphiti-core>=0.3.0",
"openai>=1.0.0",
"python-dotenv>=1.0.0",
]
[project.urls]
Homepage = "https://github.com/alankyshum/graphiti-memory"
Repository = "https://github.com/alankyshum/graphiti-memory"
Issues = "https://github.com/alankyshum/graphiti-memory/issues"
[project.scripts]
graphiti-mcp-server = "graphiti_memory.server:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["graphiti_memory*"]