gimp-mcp vs filesystem
并排对比,帮你在这两个 MCP server 之间做选择。
gimp-mcp by maorcc | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 110 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 49 | 77 |
| 官方 | — | ✓ |
| 分类 | 多媒体AI / LLM 工具开发者工具 | 本地文件系统开发者工具效率工具 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 1 个月前 | 本月 |
gimp-mcp · 概述
GIMP MCP 服务器通过 56 个专业工具提供实时视觉反馈,让 AI 助手能够编辑图像。
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
gimp-mcp · 使用场景
- 具有视觉验证的迭代背景移除
- 表情编辑和角色修改
- 包含色彩调整和文本合成的复杂多步骤流程
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
gimp-mcp · 安装
安装
前置条件
- GIMP 3.2+ (已在 3.2.2 上测试)
- Python 3.8+
- uv (Python 包管理器)
- 兼容 MCP 的 AI 客户端 (Claude Desktop, Claude Code 等)
步骤
- 克隆并安装依赖项:
git clone https://github.com/maorcc/gimp-mcp.git
cd gimp-mcp
uv sync- 通过将
gimp-mcp-plugin.py复制到 GIMP 的插件目录来安装 GIMP 插件:
**Linux:**
mkdir -p ~/.config/GIMP/3.0/plug-ins/gimp-mcp-plugin
cp gimp-mcp-plugin.py ~/.config/GIMP/3.0/plug-ins/gimp-mcp-plugin/
chmod +x ~/.config/GIMP/3.0/plug-ins/gimp-mcp-plugin/gimp-mcp-plugin.py**macOS:**
mkdir -p ~/Library/Application\ Support/GIMP/3.0/plug-ins/gimp-mcp-plugin
cp gimp-mcp-plugin.py ~/Library/Application\ Support/GIMP/3.0/plug-ins/gimp-mcp-plugin/
chmod +x ~/Library/Application\ Support/GIMP/3.0/plug-ins/gimp-mcp-plugin/gimp-mcp-plugin.py**Windows:** 复制到 %APPDATA%\GIMP\3.2\plug-ins\gimp-mcp-plugin\gimp-mcp-plugin.py
- 在 GIMP 中启动 MCP 服务器:打开图像 > 工具 > 启动 MCP 服务器
- 配置您的 MCP 客户端。对于 Claude Desktop:
{
"mcpServers": {
"gimp": {
"command": "uv",
"args": ["run", "--directory", "/full/path/to/gimp-mcp", "gimp_mcp_server.py"]
}
}
}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 中安装。