MCP Catalogs
首页

naver-search-mcp vs memory

并排对比,帮你在这两个 MCP server 之间做选择。

naver-search-mcp
by isnow890
memory
by modelcontextprotocol
Stars★ 68★ 85,748
30天用量
综合分4877
官方
分类
搜索电商AI / LLM 工具
知识库 / RAGAI / LLM 工具效率工具
实现语言TypeScriptTypeScript
最近提交本月本月

naver-search-mcp · 概述

Naver Search API 集成的 MCP 服务器,提供全面的搜索和数据分析工具。

memory · 概述

一个实现持久化记忆的 MCP 服务器,使用本地知识图谱让 AI 模型能在聊天间记住用户信息。

naver-search-mcp · 使用场景

  • 通过搜索和趋势分析进行韩国市场研究
  • 在 Naver 生态系统服务中发现内容
  • 电商产品研究和竞争对手分析

memory · 使用场景

  • 通过记住用户偏好、历史和关系来个性化 AI 助手交互
  • 构建维护对话历史的上下文感知聊天应用
  • 创建在 AI 模型会话间持久化的知识库

naver-search-mcp · 安装

安装

方法 1:NPX 安装(推荐)

对于 Claude Desktop,添加到配置文件中(Windows: %APPDATA%\Claude\claude_desktop_config.json,macOS/Linux: ~/Library/Application Support/Claude/claude_desktop_config.json):

{
  "mcpServers": {
    "naver-search": {
      "command": "npx",
      "args": ["-y", "@isnow890/naver-search-mcp"],
      "env": {
        "NAVER_CLIENT_ID": "your_client_id",
        "NAVER_CLIENT_SECRET": "your_client_secret"
      }
    }
  }
}
方法 2:本地安装
  1. 克隆并构建源代码:
git clone https://github.com/isnow890/naver-search-mcp.git
cd naver-search-mcp
npm install
npm run build
  1. 更新 Claude Desktop 配置,指向构建后的文件:
{
  "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"
      }
    }
  }
}

先决条件:Naver Developers API 密钥,Node.js 18+,NPM 8+

memory · 安装

安装

Claude Desktop

添加到你的 claude_desktop_config.json 文件中:

{
  "mcpServers": {
    "memory": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-memory"
      ]
    }
  }
}

VS Code

使用一键安装按钮或在 .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"]
    }
  }
}
对比内容由 README + GitHub 公开数据自动生成,定期更新。