home / mcp / agentkits memory mcp server
Provides a local, fast, zero-dependency memory store for AI coding assistants with MCP tools for saving, searching, recalling, listing, and monitoring memories.
Configuration
View docs{
"mcpServers": {
"aitytech-agentkits-memory": {
"command": "npx",
"args": [
"agentkits-memory-server"
]
}
}
}You can persist decisions, patterns, errors, and session context locally with AgentKits Memory MCP, a fast, zero-dependency memory store that runs entirely on your machine. It enables your AI coding assistant to remember important details across sessions, without cloud services or keys, and with seamless local performance.
You will run a local MCP server that hosts memory operations and optionally a web viewer. The memory server provides tools to save, search, recall, list, and monitor memories. Your AI assistant can store contextual information about decisions, patterns, errors, and session observations, then query or export memories as needed.
Operate Memory MCP through your MCP client by starting the memory server and, optionally, the web viewer. Use the memory tools to save contextual entries during development, search with semantic similarity, recall topics, and export memories for version control.
Prerequisites: you need Node.js version 18.0.0 or newer installed on your system.
1) Install the memory package in your project.
npm install @aitytech/agentkits-memory2) Configure the MCP server in your project configuration. Add a memory server entry under mcpServers that runs the memory server via npx.
{
"mcpServers": {
"memory": {
"command": "npx",
"args": ["agentkits-memory-server"]
}
}
}Start the MCP memory server using the configuration above, then (optionally) start the web viewer for a browser UI.
npx agentkits-memory-serverOpen the web viewer at the default port to manage memories.
npx agentkits-memory-webSave decisions, patterns, errors, or context for persistent memory.
Search memories using semantic similarity to find relevant context.
Recall all memories related to a specific topic.
List recent memories for quick review.
Check the health and status of the memory system.