Main
Use Docker for the quickest evaluation; the README lists separate images for Apple Silicon, CPU-only amd64, CUDA, and Vulkan environments.
Treat Neo4j compatibility as the migration path: start by connecting your existing Neo4j driver to
bolt://localhost:7687and keep queries in Cypher.Use the admin UI at
http://localhost:7474to validate schema/indexes and iterate before wiring it into a production GraphRAG pipeline.
Source-backed notes
- README Quick Start shows Docker commands mapping ports 7474 (admin UI) and 7687 (Bolt) and points to
http://localhost:7474. - README states it is Neo4j-compatible (Bolt + Cypher) and also exposes REST/GraphQL/gRPC interfaces.
- README notes different images/profiles (arm64/amd64, CPU/CUDA/Vulkan) and provides a from-source build path using Go.
FAQ
- Is it compatible with Neo4j clients?: README says Bolt + Cypher compatibility is a core goal for drop-in usage.
- Which port is the admin UI?: 7474 — README links to
http://localhost:7474. - Do I need a GPU?: No — README includes CPU-only images; GPU paths are optional for acceleration.