MCP Catalogs
Home

html-to-markdown-mcp vs memory

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

html-to-markdown-mcp
by levz0r
memory
by modelcontextprotocol
Stars★ 24★ 85,748
30d uses
Score4577
Official
Categories
Web ScrapingDeveloper ToolsProductivity
Knowledge GraphAI / LLM ToolsProductivity
LanguageJavaScriptTypeScript
Last commit2 mo agothis month

html-to-markdown-mcp · Summary

MCP server that converts HTML to Markdown using Turndown.js with SSRF protection.

memory · Summary

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

html-to-markdown-mcp · Use cases

  • Convert web articles to Markdown for offline reading
  • Extract clean content from messy HTML pages
  • Automatically save webpage content to Markdown files

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

html-to-markdown-mcp · Install

Installation

npm install -g html-to-markdown-mcp

Claude Desktop Configuration

{
  "mcpServers": {
    "html-to-markdown": {
      "command": "npx",
      "args": ["html-to-markdown-mcp"]
    }
  }
}

Local Development

git clone https://github.com/levz0r/html-to-markdown-mcp.git
cd html-to-markdown-mcp
npm install
npm start

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.