100% Local Zero Config MIT License

Give Your AI Memory

Persistent memory system for AI coding assistants via MCP.

Store decisions, patterns, errors, and context that persists across sessions.
No cloud. No API keys. No setup. Just works.

$ npm install @aitytech/agentkits-memory
Works with: Claude Code Cursor GitHub Copilot Windsurf Cline
The Problem

Your AI Forgets Everything

Every new session starts from zero. Same questions. Same explanations. Same mistakes.

What if your AI could remember?

Why AgentKits Memory

Built for developers who want AI that learns and remembers

100% Local

All data stays on your machine. No cloud, no API keys, no accounts. Your code context is private.

Blazing Fast

SQLite + WASM = instant queries with zero latency. Sub-millisecond lookups even with thousands of memories.

Zero Config

Works out of the box. No database setup required. Just install and start storing memories.

Cross-Platform

Windows, macOS, Linux - same code, same speed. Works everywhere Node.js runs.

Vector Search

Optional HNSW semantic similarity search. Find related memories by meaning, not just keywords.

Auto-Capture

Built-in hooks for session context, tool usage, and summaries. Memory grows automatically.

5 MCP Tools

Simple tools your AI can use to save and recall memories

memory_save

Save decisions, patterns, errors, or context

memory_search

Search memories using semantic similarity

memory_recall

Recall everything about a specific topic

memory_list

List recent memories

memory_status

Check memory system status

Web Interface

Beautiful Memory Viewer

Browse, search, add, edit, and delete memories through a modern web interface

$ npx agentkits-memory-web

Then open http://localhost:1905

Memory List

Browse all stored memories with search and namespace filtering

Add Memory

Create new memories with key, namespace, type, content, and tags

Memory Details

View full memory details with edit and delete options

Quick Start

Get up and running in under 2 minutes

1

Install

npm install @aitytech/agentkits-memory
2

Configure MCP Server

Add to your .mcp.json (or .claude/.mcp.json):

{
  "mcpServers": {
    "memory": {
      "command": "npx",
      "args": ["agentkits-memory-server"]
    }
  }
}
3

Use Memory Tools

Your AI assistant can now use memory_save, memory_search, memory_recall, memory_list, and memory_status tools!

Memory Categories

Organize your AI's knowledge by type

decision

Architecture decisions, ADRs

pattern

Reusable code patterns

error

Error solutions and fixes

context

Project context and facts

observation

Session observations

Give Your AI Memory

Stop repeating yourself. Start building smarter.

$ npm install @aitytech/agentkits-memory