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 | — | — |
| Score | 47 | 77 |
| Official | — | ✓ |
| Categories | Web Scrapingsocial-mediaProductivity | Knowledge GraphAI / LLM ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | 12 mo ago | this 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
- Install prerequisites:
npx playwright install- Install via npm:
npm install -g rednote-mcp- Initialize authentication:
rednote-mcp init- 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"]
}
}
}