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

Running OpenClaw and Codex CLI Natively on Android via AnyClaw APK
A developer has packaged OpenClaw and Codex CLI into an Android APK called AnyClaw, enabling the gateway and Control UI to run locally on ARM64 Android 7.0+ devices without root. The project required building dependencies from source and patching multiple components to handle Android-specific constraints.

Solo Dev Uses Claude + Blender MCP to Create App Store Video in 90 Minutes
Reddit user Positive_Camel2086 details how they used Claude with the Blender MCP server to generate a 10-second vertical launch video, automating camera rigging, materials, fog, and particle systems via conversational prompts.

Automated .xcstrings Localization with Claude Code
A new Claude Code skill automates localization of Xcode .xcstrings files with five pipeline stages: domain scanning, comment generation, translation with CLDR plurals, grammar checking, and plural fix conversion.

CodeLedger: Open-source Claude Code plugin tracks token usage and background agents
CodeLedger is an open-source MCP server plugin for Claude Code that automatically tracks token usage across projects, identifies background agents, and provides cost optimization recommendations based on analysis of local JSONL session files.