- Python: 3.10 or higher
- UV: Modern Python package installer (recommended)
- Git: For cloning the repository
The simplest installation method uses UV's tool install feature:
uv tool install git+https://github.com/simplemindedbot/cortexgraph.gitThis installs all 7 CLI commands:
cortexgraph- MCP servercortexgraph-search- Unified search across STM + LTMcortexgraph-maintenance- Stats and compactioncortexgraph-migrate- Migration from old STM Servercortexgraph-consolidate- Memory consolidation toolcortexgraph-gc- Garbage collectioncortexgraph-promote- Promote memories to LTM
For contributors who want to modify the code:
# Clone repository
git clone https://github.com/simplemindedbot/cortexgraph.git
cd cortexgraph
# Install in editable mode with dev dependencies
uv pip install -e ".[dev]"For development, configure Claude Desktop with:
{
"mcpServers": {
"cortexgraph": {
"command": "uv",
"args": ["--directory", "/path/to/cortexgraph", "run", "cortexgraph"],
"env": {"PYTHONPATH": "/path/to/cortexgraph/src"}
}
}
}Check that all commands are available:
cortexgraph --version
cortexgraph-search --help
cortexgraph-maintenance --help- Configuration - Set up your memory system
- Quick Start - Get started with Claude