AI Memory MCP Server
Related Servers
Alternatives to AI Memory MCP Server
No user-submitted related servers found.
Related Servers
- FlicenseAqualityDmaintenanceA lightweight MCP server that provides persistent knowledge graph storage for AI assistants, enabling memory across sessions through entity-relationship storage with JSON file persistence.101-
- FlicenseNot gradedqualityDmaintenanceA local MCP server for AI assistants to store and retrieve personal memories on disk, with optional semantic search using embeddings.-
- AlicenseAqualityDmaintenanceA persistent memory MCP server for AI assistants, storing and retrieving notes using local JSONL files with BM25 search.5MIT
- AlicenseAqualityCmaintenanceA local, fully-offline MCP memory server that enables persistent storage and retrieval of information using SQLite with both keyword and semantic vector search capabilities.1019 npm13MIT
- FlicenseNot gradedqualityDmaintenanceAn MCP server for managing persistent AI memory using hybrid search (keyword + semantic vector) with SQLite storage and offline-first local embeddings.-
- AlicenseAqualityCmaintenanceMCP server providing persistent memory for AI agents, enabling them to read, write, and query memories across sessions.94 npmMIT
TDQS
Scored across 6 tools
Each tool has a clearly distinct purpose with no overlap: clear_memories removes all memories, delete_memory targets a specific ID, get_memory_stats provides metadata, list_memories enumerates with filtering, search_memories finds matches based on content, and store_memory adds new data. An agent can easily distinguish between these operations.
All tool names follow a consistent verb_noun pattern in snake_case (e.g., clear_memories, delete_memory, store_memory). The verbs are precise and descriptive, making the set highly predictable and readable.
With 6 tools, the server is well-scoped for an AI memory management system. Each tool serves a distinct role in the memory lifecycle (store, retrieve, search, manage, and analyze), and none feel redundant or missing for the domain.
The toolset provides complete CRUD/lifecycle coverage for memory management: store_memory (create), list_memories/search_memories (read/query), delete_memory (delete), clear_memories (bulk delete), and get_memory_stats (analytics). There are no obvious gaps that would hinder an agent's workflow.