MCP Catalogs
Home

memory vs mcp-server-weibo

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

memory
by modelcontextprotocol
mcp-server-weibo
by qinyuanpei
Stars★ 85,748★ 45
30d uses
Score7745
Official
Categories
Knowledge GraphAI / LLM ToolsProductivity
social-mediaWeb ScrapingAI / LLM Tools
LanguageTypeScriptPython
Last committhis month2 mo ago

memory · Summary

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

mcp-server-weibo · Summary

A robust MCP server providing Weibo social media data access with automatic authentication and both HTTP and stdio interfaces.

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

mcp-server-weibo · Use cases

  • Enabling AI applications to analyze social media trends and public opinion
  • Providing data sources for content analysis and research projects
  • Integrating Weibo data into chatbots for social media interaction

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"]
    }
  }
}

mcp-server-weibo · Install

Installation

**Using package manager (recommended):**

uvx install mcp-server-weibo

**Using Docker:**

docker build -t mcp-server-weibo .
docker run -p 4200:4200 mcp-server-weibo http

**From source:**

git clone https://github.com/qinyuanpei/mcp-server-weibo.git
cd mcp-server-weibo
uv pip install -e .

**MCP Client Configuration (stdio mode):**

{
  "mcpServers": {
    "weibo": {
      "command": "uvx",
      "args": ["mcp-server-weibo"]
    }
  }
}

**MCP Client Configuration (HTTP mode):**

{
  "mcpServers": {
    "weibo": {
      "url": "http://localhost:4200/sse"
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.