loading…
Search for a command to run...
loading…
Persistent memory system for AI agents that records episodic memories with care-weighting and emotional valence, and provides full-text search with temporal cha
Persistent memory system for AI agents that records episodic memories with care-weighting and emotional valence, and provides full-text search with temporal chaining and automatic consolidation.
By MEOK AI Labs — Persistent AI memory system with semantic search, care-weighted episodes, and knowledge base
pip install memory-search-mcp
python server.py
record_memoryRecord a memory episode with care-weighting and emotional valence. Memory types: interaction, insight, decision, emotion.
Parameters:
content (str): Memory contentsource_agent (str): Source agent (default: "user")memory_type (str): Type: interaction, insight, decision, emotion (default: "interaction")care_weight (float): Retrieval priority 0-1 (default: 0.5)importance (float): Importance 0-1 (default: 0.5)emotional_valence (float): Emotional valence 0-1 (default: 0.5)tags (list[str]): Tags for categorizationparent_id (str): Parent episode ID for chainssearch_memorySemantic search across all memories using full-text search with relevance ranking.
Parameters:
query (str): Search querylimit (int): Max results (default: 10)care_weight_min (float): Minimum care weight filter (default: 0.0)memory_type (str): Filter by typetags (list[str]): Filter by tagsadd_knowledgeAdd a knowledge entry to the persistent knowledge base (facts, definitions, reference material).
Parameters:
topic (str): Knowledge topiccontent (str): Knowledge contentsource (str): Source (default: "manual")confidence (float): Confidence level (default: 0.8)tags (list[str]): Tagssearch_knowledgeSearch the knowledge base by topic or content.
Parameters:
query (str): Search querylimit (int): Max results (default: 10)min_confidence (float): Minimum confidence (default: 0.0)list_memoriesList recent memories, optionally filtered by type. Sort by created_at, care_weight, importance, or access_count.
get_memory_statsGet statistics about the memory store: total count, type breakdown, average care weight, most accessed, storage size.
get_temporal_chainFollow the temporal chain from a memory episode forward or backward in time.
consolidate_memoriesConsolidate old, low-access memories by summarizing and archiving them.
semantic_searchSemantic search using TF-IDF cosine similarity (no external dependencies).
Free tier: 100 calls/day. Upgrade at meok.ai/pricing for unlimited access.
MIT — MEOK AI Labs
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"memory-search-mcp-server": {
"command": "npx",
"args": []
}
}
}