CAT
/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

Cross AI Tools

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

Mirror Memory MCP Server

mirrormemory-ai/mcp-server
HTTPregistry active
Summary

Connects Claude and other MCP clients to Mirror Memory's personal knowledge base via four core tools: semantic search across stored memories, saving new thoughts with automatic categorization and metadata extraction, listing available categories, and retrieving recent entries. Runs as a managed service over streamable HTTP, requires an API key from their web app (free tier gives 100 memories per month, MCP access needs Solo Pro at $9/month). Every memory gets vector embedded for similarity search, auto-tagged with people and topics, and fingerprinted to avoid duplicates. Useful if you want your AI to remember context across conversations without manually copy-pasting background into every chat.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try 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 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try 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 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

Mirror Memory MCP Server

Give your AI a memory. Mirror Memory is a personal knowledge base that lets Claude, ChatGPT, Cursor, and any MCP-compatible AI remember what matters to you — your preferences, experiences, goals, people, and ideas.

Capture thoughts via the web app, Telegram, or directly through MCP tools. Search them semantically. Your AI assistant becomes one that actually knows you.

Website: mirrormemory.ai App: app.mirrormemory.ai

MCP Tools

ToolDescription
search_memoriesSemantic similarity search across your memories. Use specific terms from the user's question for best results.
store_memorySave a new thought or piece of information. Auto-categorized via AI, auto-extracts people, topics, action items, and dates.
list_categoriesList all available memory categories (Ideas, Tasks, Notes, People, Work, etc.).
get_recent_memoriesRetrieve your most recently stored memories.

Quick Setup

1. Get your API key

Sign up at app.mirrormemory.ai, then go to Settings > API Keys to generate your MCP key.

2. Connect your AI

Claude Desktop (~/Library/Application Support/Claude/claude_desktop_config.json):

{
  "mcpServers": {
    "mirror-memory": {
      "url": "https://hcelnlqmgddxzvjegpdr.supabase.co/functions/v1/mcp-server",
      "headers": {
        "Authorization": "Bearer YOUR_API_KEY"
      }
    }
  }
}

Claude Code (~/.claude/settings.json):

{
  "mcpServers": {
    "mirror-memory": {
      "url": "https://hcelnlqmgddxzvjegpdr.supabase.co/functions/v1/mcp-server",
      "headers": {
        "Authorization": "Bearer YOUR_API_KEY"
      }
    }
  }
}

Cursor (.cursor/mcp.json):

{
  "mcpServers": {
    "mirror-memory": {
      "url": "https://hcelnlqmgddxzvjegpdr.supabase.co/functions/v1/mcp-server",
      "headers": {
        "Authorization": "Bearer YOUR_API_KEY"
      }
    }
  }
}

Windsurf, Cline, or any MCP client — use the same URL and API key pattern above.

3. Start talking

Once connected, your AI will automatically search your memories for relevant context and store new information you share. No special commands needed.

How It Works

You say something → AI calls store_memory → embedded + categorized + metadata extracted → stored
You ask something → AI calls search_memories → semantic vector search → relevant memories returned

Every memory is:

  • Embedded as a 1536-dim vector for semantic search
  • Auto-categorized into one of 12+ categories via AI
  • Metadata-enriched — people mentioned, action items, topics, dates, and knowledge type are extracted automatically
  • Deduplicated via SHA-256 content fingerprinting

Features

  • Multi-channel capture — Web app, Telegram bot, MCP tools, import
  • Semantic search — Find memories by meaning, not just keywords
  • AI categorization — 12 built-in categories + custom categories
  • Rich metadata — People, action items, topics, dates extracted automatically
  • Memory lifecycle — Active, archived, and superseded states
  • Weekly digests — AI-synthesized email summaries of your memories
  • Export — Download everything as markdown. No lock-in.
  • Privacy first — Row-level security. We track engagement events, never content.

Pricing

PlanPriceMemoriesChannels
Free$0100/monthWeb + Telegram
Solo Pro$9/moUnlimitedWeb + Telegram + MCP + Export
Lifetime$199 onceUnlimitedEverything, forever

MCP access requires Solo Pro or Lifetime.

Transport

  • Protocol: MCP over Streamable HTTP (JSON-RPC 2.0)
  • Auth: API key in Authorization: Bearer <key> header
  • Rate limit: 100 requests/minute per key
  • Endpoint: https://hcelnlqmgddxzvjegpdr.supabase.co/functions/v1/mcp-server

Links

  • Website
  • Web App
  • Discord Community (coming soon)

License

Mirror Memory is a managed service. This repository contains documentation and configuration for the MCP server integration.

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try 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 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Categories
Documents & KnowledgeSearch & Web Crawling
Registryactive
TransportHTTP
UpdatedApr 8, 2026
View on GitHub

Related Documents & Knowledge MCP Servers

View all →
Pdf Document Mcp

csoai-org/pdf-document-mcp

pdf-document-mcp MCP server by MEOK AI Labs
Mcp Document Converter

xt765/mcp-document-converter

Convert PDF, DOCX, HTML, Markdown, and Text for AI assistant context injection.
10
Markdown Formatter

io.github.xjtlumedia/markdown-formatter

AI Answer Copier — Convert Markdown to PDF, DOCX, HTML, LaTeX, CSV, JSON, XML, XLSX, RTF, PNG
3
Better Notion

io.github.ai-aviate/better-notion

Operate Notion with a single Markdown document — read, create, and update pages in one call.
2
Notion

suekou/mcp-notion-server

Notion MCP Server enables LLMs to access Notion workspaces with optional Markdown conversion to save tokens.
892
Docx

meterlong/mcp-doc

A powerful Word document processing service based on FastMCP, enabling AI assistants to create, edit, and manage docx files with full formatting support. Preserves original styles when editing content. 基于FastMCP的强大Word文档处理服务,使AI助手能够创建、编辑和管理docx文件,支持完整的格式设置功能。在编辑内容时能够保留原始样式和格式,实现精确的文档操作。
185