IssunDB – a new embedded graph database with vector and text search
Sparse matrix graph operations with MCP server integration for AI agents.
Embedded graph database — Cypher queries, no server, no subscription. Rust-native with Python, Node.js & Ruby bindings.
SQLite for graphs—embedded Cypher DB with 93x faster COUNT than Neo4j.
Backend developers, serverless engineers, AI agent builders
Neo4j · Memgraph · ArangoDB
I built it because I wanted a graph DB without running Docker or a cloud instance.
SparrowDB kicks butt at point lookups, global COUNT(*), and top-10 by degree but lags on traversals (1-hop, 2-hop, and variable-length paths).
It's an embedded engine with no parallel execution vs a warmed JVM server with a mature query planner. The traversal workload is not the target. Agents, CLIs, serverless functions that need a knowledge graph without provisioning one, that's the target.
Cold start is ~27ms. If you're in a serverless context where Neo4j's startup time is disqualifying, that matters.
Bindings for Python, JavaScript/Typescript, and Ruby. All open the same on-disk format. Built-in MCP server for Claude Desktop. A Bolt protocol server was just added, so gdotv and other Bolt clients can connect. At-rest encryption with XChaCha20-Poly1305. MIT.
https://sparrowdb.dev Demo: https://www.loom.com/share/0dffc9274f5f4338878fe0ffa61f0f4e
Sparse matrix graph operations with MCP server integration for AI agents.
Using a single-file .pardus format with CREATE/INSERT/SELECT + SIMILARITY queries gives a very familiar developer UX for embedding storage. The combination of graph-based ANN, full transactions, thread-safety, and zero external dependencies is an uncommon and useful engineering combo for local-first AI work; it would win more attention with benchmark comparisons and richer ecosystem integrations (connectors/clients).
Unified SQL, graph, and vector engine when Neon and pgvector already split these concerns.
Unifies SQL, graph, and vector data in one Rust engine, but still in early alpha.
Rust-built Postgres wire server with native graph and vector support.
Graph-vector-FTS in one database, but Weaviate and Neo4j already offer hybrid search.