Memora v0.2.25 MCP Server: 5× Faster Writes on D1 Database

Performance Improvements in Memora v0.2.25
Memora v0.2.25 is a lightweight MCP (Model Context Protocol) server that provides Claude with persistent memory capabilities including semantic search, knowledge graph functionality, and cross-session recall. The server supports SQLite for local storage or Cloudflare D1, S3, and R2 for remote storage.
The latest release focuses on significant performance improvements for D1 database operations. The headline change is that memory_create and memory_update operations on D1 have been reduced from 10+ seconds to approximately 2 seconds per call.
What Was Slow
ensure_schema()was making 7-9 D1 round-trips on every tool call, wasting ~4-8s each time- Crossref scan used a two-step
list + get_embeddingspattern that required ~10 round-trips on a 500-memory store - D1 session token was stored at class level and could be overwritten by background threads
What Changed
- Schema is now cached per backend instance, paid once at connect time
- Crossref scan rewritten as a single paginated
LEFT JOINoperation - Session token moved to per-instance storage with backend-level keep-max bookmark mirroring
Measured Performance on Live D1
memory_create: 10s+ → ~1.8smemory_update: 10s+ → ~1.1sconnect()2nd call onward: ~4-8s → ~0ms (cache hit)
Additional improvements include reduced Durable Object requests (lowering Cloudflare costs), an XSS fix in the graph UI, and a schema cache correctness fix for CloudSQLiteBackend file swaps. The release requires no schema migration and maintains backward compatibility with no API changes. All 39 tests pass.
This type of MCP server is useful for developers who want to give their AI coding agents persistent memory across sessions, enabling more contextual and consistent interactions.
📖 Read the full source: r/ClaudeAI
👀 See Also

OpenYak: Open-Source Desktop AI Agent for Local File Management and Automation
OpenYak is an open-source desktop AI assistant that runs entirely on your machine, offering file management, data analysis, and office automation with 100+ AI models through OpenRouter and 20+ BYOK providers.

Four Free Claude Code Skills for Prompt Clarity, Tutorials, and Bug Hunting
Four Apache 2.0, no-paid-tier Claude Code skills: prompter (prompt rewriting), tutorial-creator (annotated code walkthroughs), bug-echo (post-fix anti-pattern sweep), and bug-prospector (pre-release audit with 7 analysis lenses).

OpenSwarm: Multi-Agent Claude CLI Orchestrator for Linear and GitHub
OpenSwarm orchestrates multiple Claude Code CLI instances as autonomous agents that pull Linear issues and run Worker/Reviewer/Test/Documenter pipelines. It uses LanceDB with multilingual-e5 embeddings for memory and includes Discord bot control, PR auto-improvement, and a web dashboard.

Developer Built AI/ML Job Board Using Claude Code for Design and SEO
A developer created MOAIJobs.com, a free site curating AI/ML jobs from leading labs and companies with filtering by category, location, and salary. The site's design and technical SEO implementation were handled by Claude Code based on developer-provided references and explanations.