MCP Catalogs
Home

hanzi-browse vs memory

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

hanzi-browse
by hanzili
memory
by modelcontextprotocol
Stars★ 161★ 85,748
30d uses
Score4877
Official
Categories
Browser AutomationWeb ScrapingProductivity
Knowledge GraphAI / LLM ToolsProductivity
LanguageJavaScriptTypeScript
Last commit1 mo agothis month

hanzi-browse · Summary

MCP server that enables AI agents to browse local websites with site-specific playbooks for complex interactions.

memory · Summary

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

hanzi-browse · Use cases

  • Automate data extraction from complex websites that have dynamic content
  • Enable AI agents to perform login workflows and form submissions
  • Integrate browser automation into AI coding assistants for testing and deployment

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

hanzi-browse · Install

# Install via npx
npx hanzi-browse setup

For Claude Desktop integration, add to Claude Desktop config:

{
  "mcpServers": {
    "hanzi-browse": {
      "command": "npx",
      "args": ["hanzi-browse", "mcp"]
    }
  }
}

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.