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

Vibeyard IDE adds embedded browser for direct web UI editing with AI agents
Vibeyard, an open-source IDE for AI coding agents, now includes a browser tab session type that lets users click elements in a web UI and instruct an AI agent to edit them directly, eliminating selector guessing and component hunting.

Maggy: An Autonomous Engineering Platform on Claude Code with Cross-Session Memory and P2P Team Learning
Maggy sits at Level 4 of the AI coding tool spectrum: multi-model orchestration, cross-session memory, process intelligence from CI/reviews, and P2P team learning. Benchmarks show 83% reduction in Claude usage while catching 7 security issues missed by single-pipeline Claude Code.

OpenClaw Browser Relay Chrome Extension Alternative to Manual Configs
A Reddit user reports success with a Chrome extension for OpenClaw browser relay after manual configuration attempts caused system crashes and debugging headaches.

InsForge: Self-Hosted Postgres Backend with MCP Integration for AI Coding Agents
InsForge is an open-source, self-hosted backend alternative to Supabase that connects to Claude Code via MCP, allowing AI agents to see schema, policies, and service state. It includes PostgreSQL 16.4, PostgREST, Deno Runtime, auth, storage, and edge functions.