memv MCP Server: Persistent Structured Memory for AI Agents

memv (open-source, Python) has released an MCP server, making its persistent, structured memory layer usable from any MCP client — including Claude Desktop, Code, Cursor, or custom hosts.
Quick Setup
Install via pip and run the server with a single command:
pip install "memvee[mcp]" memv-mcp --db-url memory.db --llm-model openai:gpt-4o-mini
You can also embed the server inside your own Python process:
from memv.mcp.server import create_serverserver = create_server( db_url="memory.db", default_user_id="alice", embedding_client=my_embedder, llm_client=my_llm, ) server.run(transport="streamable-http")
Five MCP Tools
search_memory— hybrid retrieval (vector + BM25 + RRF)add_memory— directly insert structured memoryadd_conversation— extract and store memories from a conversation (requires LLM)list_memories— list stored memories for a userdelete_memory— delete with ownership check
Key Features
- LLM-optional: retrieval and direct
add_memorywork without an LLM; onlyadd_conversationextraction needs one. - Per-user isolation: every tool respects user boundaries, including ownership verification on
delete_memory. - Concurrent coalescing: multiple extractions for the same user merge into one task.
- Predict-calibrate extraction: inspired by Nemori, avoids storing everything.
- Bi-temporal model: contradictions expire rather than overwrite.
- Hybrid retrieval: combines vector search, BM25, and reciprocal rank fusion (RRF).
Docs: https://vstorm-co.github.io/memv/advanced/mcp-server/
GitHub: https://github.com/vstorm-co/memv
📖 Read the full source: r/ClaudeAI
👀 See Also

Claude Ops: Browser Dashboard for Claude Code Live Status and Subagent Tracking
A free, local macOS browser dashboard that tracks Claude Code session live status, current tool, spawned subagents, and sends OS push notifications when input is needed.

civStation: A VLM System for Playing Civilization VI via Natural Language Commands
civStation is a computer-use VLM harness that plays Civilization VI by translating high-level natural language commands into in-game actions. The system uses a 3-layer architecture separating strategy and execution, with support for human-in-the-loop intervention.

Wolfram Tech Now Available as Foundation Tool for LLM Systems
Stephen Wolfram announces Wolfram Language is now available as a foundation tool for LLM systems, providing deep computation and precise knowledge to supplement LLM capabilities. The announcement follows three years of development since the initial Wolfram plugin for ChatGPT was released in March 2023.

Claude Code Remote Control: Continue Local Sessions from Any Device
Claude Code Remote Control lets you continue local Claude Code sessions from other devices like phones or browsers while keeping everything running on your machine. It's available as a research preview on Pro and Max plans, requiring authentication and workspace trust setup.