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

GPT-5.5 Codex vs Claude Opus 4.7: Real-world coding agent benchmarks
A developer pitted GPT-5.5 Codex against Claude Opus 4.7 on two real tasks: a PR triage bot and a real-time code review UI. Claude shipped cleaner with zero errors; Codex was 18% cheaper but needed a patch pass.

Tandem MCP: Run and Manage Claude Code Sessions from Claude.ai Chat
Tandem is an open-source MCP server that links Claude.ai chat to local Claude Code sessions, allowing autonomous coding loops without copy-pasting.

Claude Code Rewrites PostHog's SQL Parser for 70x Speedup – How Property-Based Testing and Parallel Agents Worked
PostHog used multiple Claude Code sessions in parallel to rewrite their SQL parser, achieving a 70x speedup. The new parser is 16K lines of hand-rolled recursive-descent code with property-based testing.

Deploy OpenClaw on VPS with a One-Command CLI
A Reddit user claims to have developed a CLI that deploys OpenClaw on a $4.99/month VPS with a single command, offering a cost-effective alternative to using Mac Minis.