Skip to main content

Overview

Linksee Memory is a single-process Node.js MCP server using SQLite (via better-sqlite3) with WAL mode for concurrent read access.

Database tables

Core tables

Relationship tables

File tracking

Lifecycle

Virtual generated columns

The memories table has 3 virtual columns auto-extracted from structured JSON content:
These enable SQL-level filtering without parsing JSON at query time.

FTS5 configuration

The trigram tokenizer handles both English and Japanese text without language-specific stemming.

SQLite pragmas

WAL mode allows concurrent reads from multiple MCP clients while maintaining write safety.