CCM
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Claude Code Marketplaces

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

Memori Mcp

memorilabs/memori-mcp
3authSTDIOregistry active
Summary

Gives Claude persistent memory across sessions by storing and retrieving facts about users, preferences, and past interactions. You get two tools: recall pulls relevant context at the start of each turn, and advanced_augmentation saves durable facts after you respond. Memori hosts the backend, so you just need an API key and entity ID to identify your user. Evaluated on the LoCoMo benchmark at 81.95% accuracy while using under 5% of full context tokens. Useful when you're building agents that need to remember things between conversations without bloating your prompt with entire chat histories or managing your own vector store.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
AI notepad for back-to-back meetings
AI notepad for back-to-back meetings
Notes, actions and memory. Without a meeting bot. First month 100% off.
Download for free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Email for Agents: Free tier availableEmail for Agents: Free tier available
Email for Agents: Free tier available
Give your AI agent a complete email layer—sending, inbound inboxes, and sandbox testing.
Get 4K emails/month free →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
AI notepad for back-to-back meetings
AI notepad for back-to-back meetings
Notes, actions and memory. Without a meeting bot. First month 100% off.
Download for free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Email for Agents: Free tier availableEmail for Agents: Free tier available
Email for Agents: Free tier available
Give your AI agent a complete email layer—sending, inbound inboxes, and sandbox testing.
Get 4K emails/month free →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →

Memori MCP

Persistent AI memory for any MCP-compatible agent — no SDK required.

memori-mcp is the official Memori MCP server. Connect it to your AI agent to give it long-term memory: recall relevant facts, retrieve broad state summaries, restore working state after context compaction, store durable preferences after responding, and maintain context across sessions.


Why Memori MCP?

Memori turns stateless agents into stateful systems by providing structured, persistent memory that works across sessions and workflows.

  1. Persistent state beyond prompts — Most agents rely on prompt context and lose state between runs. Memori provides durable, structured memory so agents can retain facts, decisions, and outcomes over time.
  2. Memory from execution (not just natural language) — Traditional systems extract memory from chat. Memori builds memory from agent execution itself — including tool calls, decisions, and results. This enables true agent-native memory, not just conversational recall.
  3. Lower cost, higher accuracy — Instead of expanding prompt context, Memori retrieves only what matters.
    • Significantly reduced token usage
    • Faster responses
    • Improved accuracy vs long-context approaches
  4. Works with any MCP client and production-ready - No SDK, no code changes, just config

Memori is state infrastructure for production agents — enabling persistent memory, efficient retrieval, and structured context across both natural language and agent execution.

LoCoMo Benchmark

Memori was evaluated on the LoCoMo benchmark for long-conversation memory and achieved 81.95% overall accuracy while using an average of 1,294 tokens per query. That is just 4.97% of the full-context footprint, showing that structured memory can preserve reasoning quality without forcing large prompts into every request.

Compared with other retrieval-based memory systems, Memori outperformed Zep, LangMem, and Mem0 while reducing prompt size by roughly 67% vs. Zep and lowering context cost by more than 20x vs. full-context prompting.

Read the benchmark overview or download the paper.


How It Works

The server exposes seven tools:

ToolWhen to callWhat it does
memori_recallStart of each user turnFetches relevant memories at the start of a user turn
memori_recall_summarySession starts, daily briefs, status updates, project overviewsFetches broad memory state for session starts, daily briefs, status updates, and project overviews
memori_compactionAfter context compactionFetches a structured post-compaction brief so an agent can resume operational work
memori_advanced_augmentationAfter composing a responseStores durable memory after the agent has drafted a response
memori_feedbackWhen the user flags a memory issue or praises a resultReports irrelevant, missing, stale, or especially useful memory behavior
memori_signupWhen the user explicitly asks and provides an emailRequests a Memori account/API key when the user explicitly asks
memori_quotaWhen the user asks about usage or quota errors appearChecks current memory usage and limits when the user asks or quota errors appear

Example Agent Flow

Given the user message: "I prefer Python and use uv for dependency management."

  1. Agent calls memori_recall with the user message as query
  2. Agent composes a response using any returned facts
  3. Agent sends the response to the user
  4. Agent calls memori_advanced_augmentation with the user_message and assistant_response

On a later turn like "Write a hello world script", the agent recalls the Python + uv preference and personalizes its response.


Prerequisites

  • A Memori API key from app.memorilabs.ai
  • An entity_id to identify the end user (e.g. user_123)
  • An optional process_id to identify the agent or workflow (e.g. my_agent)

Export these in your shell or replace the placeholders directly in your config:

export MEMORI_API_KEY="your-memori-api-key"
export MEMORI_ENTITY_ID="user_123"
export MEMORI_PROCESS_ID="my_agent"   # optional

Server Details

PropertyValue
ServerMemori MCP
Endpointhttps://api.memorilabs.ai/mcp/
TransportStateless HTTP
AuthAPI key via request headers

Headers

HeaderRequiredDescription
X-Memori-API-KeyYesYour Memori API key from app.memorilabs.ai
X-Memori-Entity-IdYesStable end-user or entity identifier (e.g. user_123)
X-Memori-Process-IdNoOptional process, app, or workflow identifier (e.g. my_agent) for memory isolation

session_id is derived automatically as <entity_id>-<UTC year-month-day:hour>. You do not need to provide it.


Verifying the Connection

After configuring your client, verify the setup:

  • MCP server shows as connected and healthy in your client UI
  • Tools list includes memori_recall, memori_recall_summary, memori_compaction, and memori_advanced_augmentation
  • Calls return non-401 responses
  • memori_recall returns memories for known entities
  • memori_advanced_augmentation accepts durable user/assistant turn data

If you receive 401 errors, double-check your X-Memori-API-Key value. See the Troubleshooting guide for more help.


Links

  • Memori Cloud
  • Get an API key
  • MCP Overview docs
  • Client Setup docs
  • Agent Skills docs
Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
AI notepad for back-to-back meetings
AI notepad for back-to-back meetings
Notes, actions and memory. Without a meeting bot. First month 100% off.
Download for free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Email for Agents: Free tier availableEmail for Agents: Free tier available
Email for Agents: Free tier available
Give your AI agent a complete email layer—sending, inbound inboxes, and sandbox testing.
Get 4K emails/month free →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →

Configuration

MEMORI_API_KEY*secret

Your Memori Cloud API key. Get one for free at https://memorilabs.ai/

Registryactive
Package@memorilabs/memori-mcp
TransportSTDIO
AuthRequired
UpdatedMar 26, 2026
View on GitHub