MCP Catalogs
Home

naver-search-mcp vs memory

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

naver-search-mcp
by isnow890
memory
by modelcontextprotocol
Stars★ 68★ 85,748
30d uses
Score4877
Official
Categories
SearchE-commerceAI / LLM Tools
Knowledge GraphAI / LLM ToolsProductivity
LanguageTypeScriptTypeScript
Last committhis monththis month

naver-search-mcp · Summary

MCP server for Naver Search API integration with comprehensive search and DataLab analytics tools.

memory · Summary

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

naver-search-mcp · Use cases

  • Korean market research through search and trend analysis
  • Content discovery across Naver's ecosystem of services
  • E-commerce product research and competitor analysis

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

naver-search-mcp · Install

Installation

Method 1: NPX Installation (Recommended)

For Claude Desktop, add to your config file (%APPDATA%\Claude\claude_desktop_config.json on Windows, ~/Library/Application Support/Claude/claude_desktop_config.json on macOS/Linux):

{
  "mcpServers": {
    "naver-search": {
      "command": "npx",
      "args": ["-y", "@isnow890/naver-search-mcp"],
      "env": {
        "NAVER_CLIENT_ID": "your_client_id",
        "NAVER_CLIENT_SECRET": "your_client_secret"
      }
    }
  }
}
Method 2: Local Installation
  1. Clone and build the source code:
git clone https://github.com/isnow890/naver-search-mcp.git
cd naver-search-mcp
npm install
npm run build
  1. Update Claude Desktop configuration with the path to the built files:
{
  "mcpServers": {
    "naver-search": {
      "type": "stdio",
      "command": "node",
      "args": ["/path/to/naver-search-mcp/dist/src/index.js"],
      "cwd": "/path/to/naver-search-mcp",
      "env": {
        "NAVER_CLIENT_ID": "your-naver-client-id",
        "NAVER_CLIENT_SECRET": "your-naver-client-secret"
      }
    }
  }
}

Prerequisites: Naver Developers API Key, Node.js 18+, NPM 8+

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.