filesystem vs image-processing-mcp-server
并排对比,帮你在这两个 MCP server 之间做选择。
filesystem by modelcontextprotocol | image-processing-mcp-server by rafael-castelo | |
|---|---|---|
| Stars | ★ 85,748 | ★ 1 |
| 30天用量 | — | — |
| 综合分 | 77 | 28 |
| 官方 | ✓ | — |
| 分类 | 本地文件系统开发者工具效率工具 | 多媒体开发者工具本地文件系统 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 本月 | 12 个月前 |
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
image-processing-mcp-server · 概述
MCP 服务器,提供图像处理功能,包括调整大小、压缩、格式转换、元数据提取和裁剪。
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
image-processing-mcp-server · 使用场景
- 自动调整网站图像以适应不同的响应式布局
- 批量转换大型图像库为更高效的格式
- 从图像中提取元数据用于编目或分析目的
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 中安装。
image-processing-mcp-server · 安装
安装
- **先决条件:** Node.js(推荐版本 14 或更高)和 npm
- **克隆并安装:**
``bash git clone git@github.com/rafael-castelo/image-processing-mcp-server.git cd image-processing-mcp npm install npm run build ``
- **在 Claude Desktop 中配置:**
``json { "mcpServers": { "image-processing": { "command": "node", "args": ["path/to/mcp/server/build/index.js"] } } } ``
- **与 Cursor 一起使用(NPX):**
```json { "mcpServers": { "image-processing": { "command": "npx", "args": [ "-y", "image-processing-mcp-server" ] } } }