
Redis Memory
- 1 repo stars
- Updated July 2, 2026
- sergesha/redis-memory-mcp
Long-term self-managing memory for LLM agents via MCP. Semantic vector search + key-value store over Redis with automatic TTL and LRU eviction.
About
redis-memory is a Claude Code skill in the Automation & Workflows category. Long-term self-managing memory for LLM agents via MCP. Semantic vector search + key-value store over Redis with automatic TTL and LRU eviction.
- redis-memory
- Automation & Workflows
- AI-coding skill
Redis Memory by the numbers
- Data as of Jul 7, 2026 (Skillselion catalog sync)
/plugin marketplace add sergesha/redis-memory-mcp/plugin install redis-memory@redis-memory-marketplaceAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| repo stars | ★ 1 |
|---|---|
| Last updated | July 2, 2026 |
| Repository | sergesha/redis-memory-mcp ↗ |
What it does
Long-term self-managing memory for LLM agents via MCP. Semantic vector search + key-value store over Redis with automatic TTL and LRU eviction.
README.md
redis-memory-mcp
Persistent cross-session memory for AI agents
Tools
Key-Value (instant O(1) lookup):
kv_set/kv_get/kv_delete/kv_list
Semantic (vector similarity search):
mem_save/mem_search/mem_list/mem_delete
Auto-Expiry
- Default TTL: 90 days, resets on every read
ttl_days=0for permanent facts- volatile-lru eviction under memory pressure
Setup
docker compose up -d
See persistent-memory skill for usage patterns.