mcp-echarts vs filesystem
并排对比,帮你在这两个 MCP server 之间做选择。
mcp-echarts by hustcc | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 228 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 48 | 77 |
| 官方 | — | ✓ |
| 分类 | AI / LLM 工具开发者工具data-visualization | 本地文件系统开发者工具效率工具 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 4 个月前 | 本月 |
mcp-echarts · 概述
MCP ECharts 通过模型上下文协议实现动态 ECharts 图表生成。
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
mcp-echarts · 使用场景
- 为 AI 分析和报告生成可视化数据表示
- 从 AI 模型处理的数据创建图表和图形
- 通过云存储集成使用 URL 共享生成的图表
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
mcp-echarts · 安装
安装
先决条件
- Node.js 18 或更高版本
桌面应用程序 (stdio 传输)
将 MCP 服务器配置添加到您的桌面应用程序:
{
"mcpServers": {
"mcp-echarts": {
"command": "npx",
"args": [
"-y",
"mcp-echarts"
]
}
}
}使用 SSE 或 Streamable 传输运行
全局安装:
npm install -g mcp-echarts使用 SSE 传输运行(默认):
mcp-echarts -t sse或使用 Streamable 传输:
mcp-echarts -t streamable访问地址:
- SSE: http://localhost:3033/sse
- Streamable: http://localhost:3033/mcp
filesystem · 安装
安装
使用 NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}使用 Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code 扩展
点击 README 中的安装按钮直接在 VS Code 中安装。