Command Palette

Search for a command to run...

UnylyUnyly
Весь каталог

Krusch Memory

БесплатноПоддерживается

Persistent local-first semantic memory for AI agents with vector embeddings, temporal decay, and SQLite/PostgreSQL support.

GitHubEmbed

Описание

Persistent local-first semantic memory for AI agents with vector embeddings, temporal decay, and SQLite/PostgreSQL support.

README

Krusch Memory MCP Banner

A persistent, local-first semantic memory MCP server for IDEs, featuring dual SQLite/PostgreSQL support. Instead of your agent forgetting previous bugs, lessons, or project outcomes when you close the editor, it retrieves them using fast vector embeddings.

npm version License: MIT Node Ollama DB

🧠 Why Krusch?

In the crowded landscape of MCP memory servers, Krusch occupies a unique pragmatic sweet spot:

  1. Exponential Temporal Decay: Most memory servers ignore recency, returning a 6-month-old architectural decision with the same confidence as one made yesterday. Krusch mathematically decays older vectors.
  2. Local-First Purity: No cloud APIs. It uses Ollama with nomic-embed-text for 100% private, on-device vectorization.
  3. Dual Database Architecture: Zero-config SQLite out of the box for solo developers, with an instant failover to pgvector (PostgreSQL) for high-throughput autonomous swarms.
  4. Soft Project Separation: Prevent your AI agents from hallucinating cross-project bug fixes. Optionally tag memories by project, and Krusch will dynamically boost relevance for the agent's current active project while still explicitly labeling the context origin.

(Note on Decay in Practice: A memory's raw semantic relevance score drops by approximately 26% after 30 days of inactivity, ensuring your agent always prefers the freshest project realities.)

⚡ Quick Start

You must have Ollama running with the nomic-embed-text model pulled:

ollama run nomic-embed-text

1. Install the MCP globally:

npm install -g krusch-memory-mcp

(Or use the 1-command installer: curl -sL https://raw.githubusercontent.com/kruschdev/krusch_memory_mcp/main/install.sh | bash)

2. Run the interactive demo! Once installed, you can instantly verify that your Ollama connection and Database are working correctly:

krusch-memory-demo

This will spin up a temporary in-memory database, insert a mock memory, and retrieve it using vector search.

3. Add to Claude Desktop (claude_desktop_config.json):

{
  "mcpServers": {
    "krusch-memory": {
      "command": "krusch-memory",
      "args": [],
      "env": {
        "DB_MODE": "sqlite",
        "OLLAMA_URL": "http://localhost:11434",
        "EMBED_MODEL": "nomic-embed-text"
      }
    }
  }
}

4. Add to Headless Agents (OpenClaw / Hermes): If you are running autonomous AI swarms, you can plug the MCP directly into their configuration files (e.g., ~/.openclaw/mcp_client_config.json):

{
  "mcpServers": {
    "krusch-memory": {
      "command": "krusch-memory",
      "args": [],
      "env": {
        "DB_MODE": "postgres",
        "OLLAMA_URL": "http://localhost:11434"
      }
    }
  }
}

(Note: For high-throughput agent swarms, we highly recommend setting DB_MODE to postgres rather than the default sqlite.)

5. Restart your Agent / Claude Desktop. That's it!


🚀 Real-World Usage Examples

To effectively use Krusch Memory, simply speak to your IDE agent normally, instructing it to document its findings.

Example 1: Documenting a bug fix

You: "That fixed the port conflict! Please save this to memory so we don't forget the fix." Claude: [Calls add_memory] "I've saved a memory in the 'bugs' category noting that the backend port 5441 conflicts with our legacy DB and we should use 5442 instead."

Example 2: Recalling architectural decisions

You: "How did we decide to structure the user authentication last week?" Claude: [Calls search_memory] "Looking at the 'priorities' and 'lessons' categories, I see we decided to use a singleton JWT factory to avoid circular dependencies."

Example 3: Utilizing Category Filtering

You: "What are my goals for today?" Claude: [Calls search_memory with category='priorities'] "According to your priorities, you wanted to finish the CLI demo first."

Example 4: Memory Consolidation

You: "We have too many repetitive notes about the database migration. Can you consolidate them?" Claude: [Calls consolidate_memories with category='activity'] "I've reviewed 12 overlapping memories regarding the DB migration and summarized them into a single, concise memory to preserve context without bloating the vector database."

Example 5: Pruning Invalid Memories

You: "Actually, that previous fix didn't work." Claude: [Calls search_memory, then delete_memory with ID 42] "I've deleted the incorrect architectural assumption from memory so I don't reference it in the future."

How Does it Handle Similar Memories?

If you add multiple slightly different memories over time, the MCP returns the Top 3 highest cosine-similarity matches. Because Krusch includes Exponential Temporal Decay, if you have two very similar memories, the newer one will have a slightly higher score, preventing your agent from hallucinating based on outdated facts.

Soft Project Separation

If you are managing multiple repositories, Krusch helps prevent cross-contamination of ideas. When your agent adds a memory, it can specify the project property. Later, when calling search_memory using active_project, Krusch does two things:

  1. Context Boosting: It applies a mathematical similarity boost to any memory matching the active project, ensuring project-specific fixes float above global advice.
  2. Explicit Labeling: The memory returned to the agent is explicitly labeled (e.g., | Project: auth-service), ensuring the LLM understands exactly which repository the historical context belongs to.

🤝 The DBOS Agentic Ecosystem

This project is a dedicated node within the Krusch DBOS Agentic Ecosystem. The architecture moves away from monolithic local applications into a highly modular, distributed swarm of specialized Model Context Protocol (MCP) servers.

🗺️ Want to see the big picture? Read the Ecosystem Blueprint for a complete diagram of how these boundaries fit together.

🤝 The Agentic Brain (Synergy with PG-Git)

Krusch Memory MCP is designed to be used in tandem with PG-Git to solve the "Goldfish Memory" problem inherent to native AI IDEs (like Antigravity, Claude, or Codex). While they both provide semantic memory to your AI agents, they serve two distinct halves of the "Agentic Brain":

  • Krusch Memory MCP (The "Why"): Acts as the episodic and procedural memory. It stores the intent—the architectural decisions, user preferences, bugs encountered, and high-level project goals.
  • PG-Git (The "What" and "How"): Acts as the structural and semantic memory of your code. It provides the actual implementation details, file structures, and algorithms.

Infinite Continuity: By running both MCPs simultaneously, your agent can cross-reference the intent (Krusch Memory) with the implementation (PG-Git). It remembers why you chose a specific architecture, and instantly sees how to implement it, creating a deeply contextualized and autonomous coding workflow that persists across infinite sessions.


🤖 The Autonomous Agent Workflow (/close & /continue)

A major challenge with AI coding agents is "Goldfish Memory"—when you start a new session, the agent completely forgets what it was doing, the nuances of your codebase, and the bugs it just solved.

By combining Krusch Memory MCP with a file-based state tracker (e.g., INFLIGHT.md), you can create a seamless, persistent workflow that dramatically improves code quality and prevents the agent from repeating past mistakes. (Note: A starter template is included in this repository at .agent/templates/INFLIGHT.md).

1. The /close Workflow (Pause Work)

When stepping away from a task, tell your agent /close. The agent will autonomously:

  1. Save Local State: Write exactly what files it was modifying, what components are currently fragile, and the immediate next steps into an INFLIGHT.md file.
  2. Commit to Long-Term Memory: Call the add_memory tool (e.g., category: "lessons" or "activity") to embed the high-level architecture decisions, outcomes, or hard-won bug fixes from that session into the Krusch Vector Database.

2. The /continue Workflow (Resume Work)

When you start a completely blank session the next day, simply type /continue. The agent will:

  1. Read Local State: Instantly read the INFLIGHT.md file to re-orient itself on the active task list.
  2. Retrieve Semantic Context: Call the search_memory tool to dynamically load the relevant historical context, preventing it from hallucinating decoupled architectures or breaking established project rules.

The Result: The agent dynamically pulls the exact context it needs, effectively giving it infinite continuity across infinite sessions.


🗄️ Database Comparison: SQLite vs PostgreSQL

Krusch Memory offers two modes out of the box, controlled via the DB_MODE environment variable.

Feature SQLite (sqlite) PostgreSQL (postgres)
Best For Solo developers, lightweight setups. Enterprise, high-volume swarms logging every action.
Dependencies None (Built-in to node module). Requires pgvector (Docker Compose provided).
Speed Highly optimized 1-5ms (for up to ~10k vectors). Native HNSW C-index utilizing a CTE to preserve time-decay math (instant at 100k+ vectors).
Setup Zero config. Requires database connection string.

(For instructions on migrating or configuring Postgres, see our Advanced Topics Guide).


🛠️ Configuration & Troubleshooting

Claude Config Properties

Variable Description Default
DB_MODE The database engine to use (sqlite or postgres). sqlite
OLLAMA_URL The endpoint for your local Ollama instance. http://localhost:11434
EMBED_MODEL The Ollama text-embedding model to use. nomic-embed-text
AUTO_TAG Whether to use a local LLM to extract tags from memories. false
TAG_MODEL The Ollama model to use for auto-tagging. llama3.2
SUMMARIZE_MODEL The Ollama model to use for consolidating memories. Defaults to TAG_MODEL. llama3.2
DECAY_RATE Exponential decay rate applied to older memories. 0.01

Troubleshooting

  • Ollama API returned 404 Cause: You haven't pulled the embedding model. Fix: Run ollama pull nomic-embed-text.
  • ECONNREFUSED 127.0.0.1:11434 Cause: Ollama is not running. Fix: Start the Ollama desktop app, or run ollama serve.
  • Database is locked (SQLite) Cause: Multiple instances trying to write simultaneously. Fix: Krusch Memory is primarily designed for a single IDE instance in SQLite mode. If running multiple agents simultaneously, use Postgres.

📖 Further Reading

See the docs/advanced-topics.md file for:

  • Migrating from SQLite to Postgres.
  • Swapping Embedding Models.
  • How Temporal Decay works.

🗺️ Roadmap

Krusch is actively evolving. Our current short-term roadmap includes:

  • Export/Import via JSON: Easy human review and migration of memory states.
  • Metadata Filtering: Enhanced search by date range, specific tags, or confidence scores.

🧪 Testing

Krusch Memory MCP uses the native Node.js test runner. You can run the test suite locally:

npm test

Note: The integration tests will gracefully skip the database insertion/search tests if you do not have Ollama running locally, to prevent CI/CD failures.

License

MIT License. Created by kruschdev.

from github.com/kruschdev/krusch-memory-mcp

Установить Krusch Memory в Claude Desktop, Claude Code, Cursor

Рекомендуется · одна команда, все IDE
unyly install krusch-memory

Ставит в Claude Desktop, Claude Code, Cursor и VS Code — сам разбирается с npx, uvx и сборкой из исходников.

Впервые? Поставь CLI: curl -fsSL https://unyly.org/install | sh

Или настроить вручную

Выполни в терминале:

claude mcp add krusch-memory --env DB_MODE="" --env EMBED_MODEL="" --env OLLAMA_URL="" -- npx -y krusch-memory-mcp

Пошаговые гайды: как установить Krusch Memory

FAQ

Krusch Memory MCP бесплатный?

Да, Krusch Memory MCP бесплатный — установка в пару кликов через Unyly без оплаты.

Нужен ли API-ключ для Krusch Memory?

Да, требуются переменные окружения: DB_MODE, EMBED_MODEL, OLLAMA_URL. Unyly подставит их в конфиг при установке.

Krusch Memory — hosted или self-hosted?

Self-hosted: сервер запускается локально на твоей машине командой из раздела установки.

Как установить Krusch Memory в Claude Desktop, Claude Code или Cursor?

Открой Krusch Memory на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.

Изменения

Версии и запрашиваемые доступы со временем.

  • Новая версия опубликована
  • Новая версия опубликована

Похожие MCP

wenb1n-dev/SmartDB_MCP

A universal database MCP server supporting simultaneous connections to multiple databases. It provides tools for database operations, health analysis, SQL optim

wenb1n-devавтор: wenb1n-dev

Postgres Server

This server enables interaction with PostgreSQL databases through the Model Context Protocol, optimized for the AWS Bedrock AgentCore Runtime. It provides tools

madhurprashавтор: madhurprash

Postgres

Query your database in natural language

Anthropicавтор: Anthropic

PostgreSQL

Read-only database access with schema inspection.

modelcontextprotocolавтор: modelcontextprotocol

Redis

Interact with Redis key-value stores.

modelcontextprotocolавтор: modelcontextprotocol

SQLite

Database interaction and business intelligence capabilities.

modelcontextprotocolавтор: modelcontextprotocol

mxcp

Open-source framework for building enterprise-grade MCP servers using just YAML, SQL, and Python, with built-in auth, monitoring, ETL and policy enforcement.

raw-labsавтор: raw-labs

tadas-github/a2asearch-mcp

MCP server to search 4,800+ MCP servers, AI agents, CLI tools and agent skills. Install: npx -y a2asearch-mcp. Ask Claude: "Find MCP servers for database access

tadas-githubавтор: tadas-github

julien040/anyquery

Query more than 40 apps with one binary using SQL. It can also connect to your PostgreSQL, MySQL, or SQLite compatible database. Local-first and private by desi

julien040автор: julien040

drakonkat/wizzy-mcp-tmdb

A MCP server for The Movie Database API that enables AI assistants to search and retrieve movie, TV show, and person information.

drakonkatавтор: drakonkat

Compare Krusch Memory with

Не уверен что выбрать?

Найди свой стек за 60 секунд

Автор?

Embed-бейдж для README

Похожее

Все в категории data