MCP Catalogs
Home

RedNote-MCP vs memory

Side-by-side comparison to help you pick between these two MCP servers.

RedNote-MCP
by iFurySt
memory
by modelcontextprotocol
Stars★ 1,053★ 85,748
30d uses
Score4777
Official
Categories
Web Scrapingsocial-mediaProductivity
Knowledge GraphAI / LLM ToolsProductivity
LanguageTypeScriptTypeScript
Last commit12 mo agothis month

RedNote-MCP · Summary

RedNote MCP server provides programmatic access to XiaoHongShu content through search and URL fetching.

memory · Summary

An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.

RedNote-MCP · Use cases

  • Content research by searching XiaoHongShu with specific keywords
  • Retrieving detailed note content from known XiaoHongShu URLs
  • Automating content collection from the XiaoHongShu platform

memory · Use cases

  • Personalizing AI assistant interactions by remembering user preferences, history, and relationships
  • Building context-aware chat applications that maintain conversation history
  • Creating knowledge bases that persist across AI model sessions

RedNote-MCP · Install

Installation

  1. Install prerequisites:
npx playwright install
  1. Install via npm:
npm install -g rednote-mcp
  1. Initialize authentication:
rednote-mcp init
  1. Configure in Claude Desktop:
{
  "mcpServers": {
    "RedNote MCP": {
      "command": "rednote-mcp",
      "args": ["--stdio"]
    }
  }
}

memory · Install

Installation

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "memory": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-memory"
      ]
    }
  }
}

VS Code

Use one-click installation buttons or manually configure in .vscode/mcp.json:

{
  "servers": {
    "memory": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-memory"
      ]
    }
  }
}

Docker

{
  "mcpServers": {
    "memory": {
      "command": "docker",
      "args": ["run", "-i", "-v", "claude-memory:/app/dist", "--rm", "mcp/memory"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.