Sign In

agentvault-memory

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

agentvault-memory

Local-first persistent memory for AI agents — simple notes, full-text search, zero setup. MCP server.

latest
Source
npmnpm
Version
0.1.1
Version published
Maintainers
1
Created
Source

🧠 agentvault-memory

npm version License: MIT

Local-first persistent memory for AI agents — zero setup, full-text search, no cloud required.

Give your AI agent long-term memory that survives across sessions. Unlike knowledge graph solutions that require complex setup, agentvault-memory is a simple note-taking system with powerful full-text search.

Why?

Existing SolutionsProblem
server-memory (Knowledge Graph)Complex entity/relation model. Requires structured input.
Mem0, CogneeCloud-based, expensive, privacy concerns
Vector databasesOver-engineered for most use cases

agentvault-memory: Save text → Search text. That's it. SQLite + FTS5. Fast, private, local.

Tools

ToolDescription
save_memorySave any text with tags and importance level
search_memoryFull-text search across all memories
list_memoriesBrowse recent memories or filter by tag
delete_memoryRemove a specific memory
memory_statsView memory statistics

Quick Start

Claude Desktop

{
  "mcpServers": {
    "memory": {
      "command": "npx",
      "args": ["-y", "agentvault-memory"]
    }
  }
}

Then just talk to your agent:

"Remember that the API endpoint is https://api.example.com/v2" → Agent calls save_memory

"What was that API endpoint?" → Agent calls search_memory → finds it instantly

Storage

All data is stored locally at ~/.agentvault/memory.db (SQLite).

  • No cloud, no account, no API keys
  • Data never leaves your machine
  • Override path: AGENTVAULT_MEMORY_DB=/path/to/memory.db

Part of AgentVault

🏴‍☠️ AgentVault — The essential toolkit for AI agents.

💡 Tip: Memory is included in agentvault-tools (9 tools in one package). Use the standalone agentvault-memory only if you want memory without the web/utility tools.

PackageWhat it does
agentvault-tools🛠️ 9-tool MCP starter kit (includes memory)
agentvault-memory🧠 Local-first persistent memory (you are here)
agentvault-guard🛡️ Tool poisoning detection
agentvault-gateway🔌 MCP proxy with audit logging
agentvault-score📊 Quality scoring (A+ to F)
agentvault-retry🔄 Resilient calls with backoff
agentvault-cache⚡ Smart result caching

MIT License

Keywords

mcp

FAQs

Package last updated on 01 May 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts