Command Palette

Search for a command to run...

UnylyUnyly
Browse all

Issun Db

FreeNot checked

A fast embedded graph database for AI applications and graph analytics

GitHubEmbed

About

A fast embedded graph database for AI applications and graph analytics

README

IssunDB Logo

IssunDB

Tests Code Coverage Crates.io Docs.rs Documentation
License Docker Playground

An embedded graph database for AI applications and graph analytics


IssunDB is an embedded graph database written in Rust. It can be embedded in Rust applications without a separate server, and is designed for applications such as GraphRAG pipelines and knowledge graphs.

You can download the latest binaries (for IssunDB CLI, MCP, and HTTP servers) from here.

Key Features

  • ACID transactions, property graph model, and Cypher query support
  • Fast graph traversal and analytics
  • Vectorized query execution
  • Vector, full-text, and hybrid search
  • APIs for Rust, Python, CLI, HTTP (REST), and MCP
  • Support for Linux, macOS, Windows, and WebAssembly

[!IMPORTANT] This project is still in early development, so bugs and breaking changes are expected. Please use the issue page to report bugs or request features.


Quickstart

To use IssunDB in your Rust project, add the dependency to your Cargo.toml:

[dependencies]
issundb = "0.1.0-alpha.25"
serde_json = "1.0"

[!NOTE] IssunDB needs Rust 1.85.0 or newer.

The following example opens a database, inserts nodes, creates relationships, and queries the graph using Cypher:

use std::path::Path;
use issundb::{Graph, GraphQueryExt};

fn main() -> Result<(), Box<dyn std::error::Error>> {
    // Open a graph database (with a 1 GB memory map size limit)
    let graph = Graph::open(Path::new("./issundb-data"), 1)?;

    // Add two nodes with properties
    let alice_props = serde_json::json!({ "name": "Alice", "age": 30 });
    let alice_id = graph.add_node("Person", &alice_props)?;

    let bob_props = serde_json::json!({ "name": "Bob", "age": 28 });
    let bob_id = graph.add_node("Person", &bob_props)?;

    // Add an edge between the nodes
    let edge_props = serde_json::json!({ "since": 2021 });
    graph.add_edge(alice_id, bob_id, "KNOWS", &edge_props)?;

    // Optional: rebuild CSR snapshot manually after bulk writes
    graph.rebuild_csr()?;

    // Run a Cypher query and print the results
    let result = graph.query(
        "MATCH (a:Person)-[r:KNOWS]->(b:Person) RETURN a.name, b.name, r.since"
    )?;

    for record in result.records {
        println!(
            "Match: {} knows {} since {}",
            record.values[0],
            record.values[1],
            record.values[2]
        );
    }

    Ok(())
}
# Output:
Match: "Alice" knows "Bob" since 2021

Running IssunDB in a Container

CLI

# Run IssunDB with the CLI
docker run --rm -it -v issundb-data:/data ghcr.io/issundb/issundb:latest

HTTP (REST)

# Run IssunDB with the HTTP API on port 7474
docker run --rm -p 7474:7474 -v issundb-data:/data ghcr.io/issundb/issundb:latest issundb-rest

MCP

# Run IssunDB with the MCP API on port 8000
docker run --rm -p 8000:8000 -v issundb-data:/data ghcr.io/issundb/issundb:latest issundb-mcp

Documentation

The project documentation is available here. The Rust API documentation is available on docs.rs/issundb.

Rust Examples

Refer to the issundb-examples crate for Rust API examples.

Python Examples

Refer to the issundb-py/examples directory for Python API examples.

Knowledge Graph Demo

asciicast


Contributing

See CONTRIBUTING.md for details on how to make a contribution.

License

IssunDB is available under either of these licenses:

Acknowledgements

  • The logo is from SVG Repo with some modifications.

from github.com/IssunDB/issun-db

Installing Issun Db

This server has no published package — it is built from source. Open the repository and follow its README.

▸ github.com/IssunDB/issun-db

FAQ

Is Issun Db MCP free?

Yes, Issun Db MCP is free — one-click install via Unyly at no cost.

Does Issun Db need an API key?

No, Issun Db runs without API keys or environment variables.

Is Issun Db hosted or self-hosted?

Self-hosted: the server runs locally on your machine via the install command above.

How do I install Issun Db in Claude Desktop, Claude Code or Cursor?

Open Issun Db on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.

Related MCPs

Compare Issun Db with

Not sure what to pick?

Find your stack in 60 seconds

Author?

Embed badge for your README

Browse similar

All data MCPs