MCP Memory Sqlite
未认领A personal knowledge graph and memory system for AI assistants using SQLite with optimized text search. Perfect for giving Claude (or any MCP-compatible AI) persistent memory across conversations!
安装
npm install mcp-memory-sqlite工具(20 个)
Case-insensitive
Searches ignore case differences
create_entities
Create or update entities with observations.
create_relations
Create relationships between entities. Duplicate relations (same
delete_entity
Delete an entity and all associated data (observations and relations).
delete_relation
Delete a specific relation between entities.
entities
Array of entity objects
entity
The requested entity
entityType
(string): Type/category of the entity
get_entity_with_relations
Get an entity along with all its relations and directly connected
limit
(number, optional): Maximum results to return (default: 10,
name
(string): Unique entity identifier
observations
(string[]): Array of observation strings
query
(string): Text to search for
read_graph
Get recent entities and their relations (returns last 10 entities by
relatedEntities
All entities connected to this one
relations
Array of relation objects
search_nodes
Search for entities and their relations using text search with
source
(string): Source entity name
target
(string): Target entity name
type
(string): Relationship type