A local-first memory layer that captures your conversations, builds a searchable knowledge graph, and automatically injects the right context into every new prompt — no cloud, no subscriptions, no re-explaining yourself.
Browser Extension: Claude · ChatGPT · Gemini · DeepSeek · Grok · Copilot · Mistral
MCP (AI Coding Tools): Claude Code · Cursor · Windsurf · Claude Desktop
https://github.com/user-attachments/assets/f77a865a-cee9-4f7c-b0fa-4fb4d1cee7be
The Demo only showcases the main function of ArcRift, there are a lot of features for you to Explore!
npx arcrift-setup
Historical NPM Downloads (Legacy Brands)
Due to rebranding, the total historical download count is split across our three NPM packages:
| Package Name | Downloads |
|---|---|
arcrift-setup (Current) |
|
glia-ai-setup (Legacy) |
|
synq-setup (Legacy) |
You are deep in a complex project. You have had 30 conversations with Claude about your auth flow, database schema, and deployment strategy. You open a new chat — and it is all gone. You spend 10 minutes re-explaining context you have already covered, and the AI gives you advice that contradicts decisions you made two weeks ago.
ArcRift stops the cycle. It captures your AI conversations, extracts structured facts into a knowledge graph, embeds them as searchable vectors, and automatically prepends the most relevant context to every new prompt — before you even finish typing.
[!IMPORTANT] ArcRift is a powerful AI developer tool. Before installing the
.exe, you must have Node.js and Ollama installed on your computer to run the backend and local AI models. If you don't have these, use the Developer (One-Command Setup) below to automatically install them!
ArcRift_Installer.exe (or your OS equivalent).If you want to modify the code, build the project yourself, or use the MCP Tools:
1. One-Command Setup (All Platforms)
npx arcrift-setup
This clones the repo, checks dependencies, pulls Ollama models, installs packages, and builds the backend.
2. Launching the Development Server To launch the native desktop application in dev mode:
npm run dev:desktop
This will start the backend seamlessly in the background and open the native ArcRift dashboard. When you close the window, it will minimize to your system tray. You can fully quit ArcRift from the tray menu.
The extension requires the ArcRift backend to be running. If you have the ArcRift Desktop App running in your system tray, you are already good to go!
Step 1 — Install the Extension
For Google Chrome / Edge / Brave:
1. Download the Chrome .zip file from the GitHub Releases page.
2. Extract the .zip file to a permanent folder on your computer.
3. Open chrome://extensions
4. Enable Developer mode (top-right toggle)
5. Click Load unpacked and select the folder you just extracted.
6. The ArcRift icon will appear in your toolbar!
For Mozilla Firefox:
1. Download the officially signed .xpi file from the GitHub Releases page.
2. Simply drag and drop the .xpi file directly into your open Firefox window.
3. Click Add when prompted. It will be installed permanently!
Step 2 — Use it
Navigate to Claude, ChatGPT, Gemini, DeepSeek, Grok, Copilot, or Mistral. Click the ArcRift popup, enter a project name, and click Save Chat. Auto-connect activates immediately.
The MCP server runs as a separate process and communicates with AI coding tools over stdio. The backend does not need to be running as an HTTP server — the MCP server initializes its own storage connection.
Step 1 — Build the backend
cd backend
npm install
npm run build
This produces backend/dist/mcp/server.js.
Step 2 — Generate your config (easiest)
cd backend
npm run mcp:config
This prints a pre-formatted JSON block with absolute paths resolved for your machine. Copy it directly into your tool's config file.
Step 3 — Add to your AI tool
Claude Desktop — %APPDATA%\Claude\claude_desktop_config.json (Windows) or ~/.claude/claude_desktop_config.json (macOS):
{
"mcpServers": {
"arcrift": {
"command": "node",
"args": ["C:/path/to/ARCRIFT/backend/dist/mcp/server.js"]
}
}
}
Claude Code — run in your project directory:
claude mcp add ArcRift node /path/to/ARCRIFT/backend/dist/mcp/server.js
Cursor — create .cursor/mcp.json in your project root:
{
"mcpServers": {
"arcrift": {
"command": "node",
"args": ["/path/to/ARCRIFT/backend/dist/mcp/server.js"]
}
}
}
Windsurf — create .windsurf/mcp.json in your project root:
{
"mcpServers": {
"arcrift": {
"command": "node",
"args": ["/path/to/ARCRIFT/backend/dist/mcp/server.js"]
}
}
}
Use forward slashes in all paths, even on Windows. Restart your AI tool after editing the config.
Step 4 — Set the storage mode
The MCP server reads backend/.env. Make sure it contains:
ARCRIFT_STORAGE_MODE=sqlite
OLLAMA_URL=http://localhost:11434
Ollama must be running for the MCP server to generate embeddings and extract knowledge graph triples.
When running the browser extension and MCP server together, they share the same ArcRift.db database. No extra configuration is needed.
start.bat or ./start.shhttp://localhost:3001)Memory saved via the extension is immediately available in recall_context, and memory stored via store_memory appears in the dashboard history. They are the same database.
The HTTP backend and MCP server both use WAL mode on SQLite, which allows them to read and write concurrently without locking each other out.
Saving a conversation:
1. Have a conversation on any supported platform
2. Click the ArcRift icon in the Chrome toolbar
3. Enter a project name (e.g. AuthService, MyApp-Backend)
4. Click Save Chat
ArcRift scrubs PII, chunks the text, embeds it locally with Ollama, and sends it to the backend. The UI confirms success in under 5 seconds. Background indexing (sentence-level embeddings, knowledge graph extraction) continues asynchronously.
Auto-connect:
Once a session is saved and activated, ArcRift intercepts every prompt you type on that platform. Before the request is sent, it queries the backend for relevant context and prepends the top results. You do not need to do anything — just type normally.
To pause: click the ArcRift popup and hit Pause. The badge dims. Click again to resume.
New chat detection:
When you click "New Chat" on ChatGPT, Claude.ai, or Gemini, ArcRift detects the URL or DOM change and resets the active session. The next Save will start a fresh project, and context from the previous session will not bleed in.
Classic inject:
For a one-time context push without enabling auto-connect, click Inject Context in the popup. ArcRift pastes the knowledge graph summary directly into the chat input field. You review it and send manually.
Once connected, your coding agent has access to seven ArcRift tools. A typical session looks like this:
At session start — recall project memory:
Use recall_context with prompt: "implementing JWT refresh token rotation"
and project: "AuthService"
After completing work — save decisions:
Use store_memory with content: "We implemented refresh token rotation using
Redis for token invalidation. The key insight was using a sliding expiry window
of 15 minutes for access tokens and 7 days for refresh tokens." and project: "AuthService"
Finding something from a different project:
Use search_memory with query: "rate limiting strategy"
Getting an overview before starting:
Use get_project_summary for project: "AuthService"
Auto-detecting the current project:
Use identify_active_project with path: "/Users/me/code/auth-service"
Correcting outdated information:
Use prune_memory with prompt: "Redis rate limiting" and project: "AuthService"
Open http://localhost:3001 while the backend is running.
| Tab | What you see |
|---|---|
| Graph | D3.js force-directed knowledge graph. Nodes are entities, edges are relations. Degree-scaled sizing — high-connectivity nodes appear larger. Hover for details, scroll to zoom, drag to reposition. |
| History | All extracted triples (subject / relation / object) with timestamps. Filterable by project and relation type. |
| Chat | The full saved conversation rendered as color-coded chat bubbles, with platform attribution. |
| Job Queue | Live view of background indexing jobs — pending, processing, completed, dead-lettered. |
| Mode | Min RAM | Disk | Docker | What runs |
|---|---|---|---|---|
| SQLite (Recommended) | 2 GB | 3 GB | Not required | All features — single .db file + Ollama |
| Full Docker | 8 GB | 15 GB | Required | Neo4j + MongoDB + ChromaDB + Ollama |
| Lite Docker | 4 GB | 10 GB | Required | MongoDB + ChromaDB (no knowledge graph) |
SQLite mode is the recommended default. The installer detects Docker automatically and sets SQLite mode if Docker is not available.
| Requirement | Version | Notes |
|---|---|---|
| Node.js | 20 LTS+ | nodejs.org |
| Ollama | Latest | ollama.com — required for local embeddings and extraction |
| Docker Desktop | 24.0+ | docker.com — only needed for Docker mode |
| Groq API Key | — | console.groq.com — free, used as fallback if Ollama is slow |
| Feature | Detail |
|---|---|
| Three-Layer Hybrid Search | Sentence vectors, chunk vectors, and FTS5 keyword search run in parallel. Results are fused and ranked by a combined score. |
| Surgical Sentence Trimming | Chunks are split into individual sentences at index time. On retrieval, only the sentences that directly match the query are returned — not the entire surrounding paragraph. Reduces prompt noise by up to 95%. |
| HyDE (Hypothetical Document Embedding) | Before querying the vector store, ArcRift generates a hypothetical answer to your query and uses that embedding alongside the raw query. This dramatically improves recall for rephrased or indirect questions. |
| Small-to-Big Retrieval | High-precision sentence match triggers fetching the parent chunk for broader context. Precision of a |
$ claude mcp add ArcRift \
-- python -m otcore.mcp_server <graph>