ultimate_mcp_server vs gimp-mcp
并排对比,帮你在这两个 MCP server 之间做选择。
ultimate_mcp_server by Dicklesworthstone | gimp-mcp by maorcc | |
|---|---|---|
| Stars | ★ 149 | ★ 110 |
| 30天用量 | — | — |
| 综合分 | 85 | 49 |
| 官方 | — | — |
| 分类 | AI / LLM 工具浏览器自动化本地文件系统 | 多媒体AI / LLM 工具开发者工具 |
| 实现语言 | Python | Python |
| 最近提交 | 2 个月前 | 1 个月前 |
ultimate_mcp_server · 概述
一个功能全面的 MCP server,为 AI 提供多种能力:LLM 委托、浏览器自动化、文档处理和认知记忆系统。
gimp-mcp · 概述
GIMP MCP 服务器通过 56 个专业工具提供实时视觉反馈,让 AI 助手能够编辑图像。
ultimate_mcp_server · 使用场景
- 使用 OCR 和结构化数据提取进行复杂的文档处理和分析
- 跨多个网站进行网页自动化和研究,通过浏览器控制
- 通过模型间的智能任务分配实现成本优化的 AI 工作流
gimp-mcp · 使用场景
- 具有视觉验证的迭代背景移除
- 表情编辑和角色修改
- 包含色彩调整和文本合成的复杂多步骤流程
ultimate_mcp_server · 安装
安装
- 克隆仓库:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server- 安装依赖:
pip install -e .- 对于 Claude Desktop 集成,添加到 claude_desktop_config.json:
{
"mcpServers": {
"ultimate-mcp": {
"command": "python",
"args": ["-m", "ultimate_mcp_server"],
"env": {
"PYTHONPATH": "."
}
}
}
}- 运行服务器:
python -m ultimate_mcp_servergimp-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"]
}
}
}