Adds SSE endpoint at /mcp/sse so Claude Code can connect over HTTPS without needing a local Python bridge script. Benefits: - No local files or sandbox permission issues - Works from any machine (OpenClaw, DevVM) - No startup delay or stderr suppression hack - Auth via Bearer token in request headers
36 lines
1,013 B
TOML
36 lines
1,013 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "claude-memory-mcp"
|
|
version = "1.0.0"
|
|
description = "Standalone MCP memory server with multi-user support and Vault integration"
|
|
readme = "README.md"
|
|
license = "Apache-2.0"
|
|
requires-python = ">=3.11"
|
|
classifiers = [
|
|
"Development Status :: 4 - Beta",
|
|
"License :: OSI Approved :: Apache Software License",
|
|
"Programming Language :: Python :: 3",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
api = ["fastapi>=0.115", "asyncpg>=0.30", "uvicorn>=0.34", "pydantic>=2.0", "alembic>=1.14", "sqlalchemy>=2.0", "psycopg2-binary>=2.9", "mcp>=1.0.0"]
|
|
vault = ["hvac>=2.0"]
|
|
dev = ["pytest>=8.0", "pytest-asyncio>=0.24", "ruff>=0.8", "mypy>=1.13", "httpx>=0.28", "cryptography>=43.0"]
|
|
|
|
[project.scripts]
|
|
claude-memory-server = "claude_memory.mcp_server:main"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/claude_memory"]
|
|
|
|
[tool.ruff]
|
|
target-version = "py311"
|
|
line-length = 120
|
|
|
|
[tool.mypy]
|
|
python_version = "3.11"
|
|
strict = true
|
|
|