mcp-server-chart vs naver-search-mcp
并排对比,帮你在这两个 MCP server 之间做选择。
mcp-server-chart by antvis | naver-search-mcp by isnow890 | |
|---|---|---|
| Stars | ★ 4,068 | ★ 68 |
| 30天用量 | 10,239 | — |
| 综合分 | 84 | 48 |
| 官方 | — | — |
| 分类 | AI / LLM 工具开发者工具效率工具 | 搜索电商AI / LLM 工具 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 本月 | 本月 |
mcp-server-chart · 概述
使用 AntV 生成 26+ 种图表的 TypeScript MCP 服务器,支持多种图表类型和部署方式。
naver-search-mcp · 概述
Naver Search API 集成的 MCP 服务器,提供全面的搜索和数据分析工具。
mcp-server-chart · 使用场景
- 数据分析师从数据集中创建可视化报告
- AI 助手根据用户请求生成自定义图表
- Web 应用通过 HTTP API 嵌入可视化功能
naver-search-mcp · 使用场景
- 通过搜索和趋势分析进行韩国市场研究
- 在 Naver 生态系统服务中发现内容
- 电商产品研究和竞争对手分析
mcp-server-chart · 安装
安装
全局安装:
npm install -g @antv/mcp-server-chart对于桌面应用(如 Claude Desktop、VSCode):
{
"mcpServers": {
"mcp-server-chart": {
"command": "npx",
"args": ["-y", "@antv/mcp-server-chart"]
}
}
}Windows 系统:
{
"mcpServers": {
"mcp-server-chart": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@antv/mcp-server-chart"]
}
}
}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:本地安装
- 克隆并构建源代码:
git clone https://github.com/isnow890/naver-search-mcp.git
cd naver-search-mcp
npm install
npm run build- 更新 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+