gimp-mcp vs time
并排对比,帮你在这两个 MCP server 之间做选择。
gimp-mcp by maorcc | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 110 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 49 | 77 |
| 官方 | — | ✓ |
| 分类 | 多媒体AI / LLM 工具开发者工具 | 效率工具开发者工具沟通协作 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 1 个月前 | 本月 |
gimp-mcp · 概述
GIMP MCP 服务器通过 56 个专业工具提供实时视觉反馈,让 AI 助手能够编辑图像。
time · 概述
功能全面的 MCP 服务器,提供时间和时区转换功能,可自动检测系统时区。
gimp-mcp · 使用场景
- 具有视觉验证的迭代背景移除
- 表情编辑和角色修改
- 包含色彩调整和文本合成的复杂多步骤流程
time · 使用场景
- 协助安排跨时区的国际会议
- 为基于位置的查询提供实时时间信息
- 为旅行计划和行程安排提供时间转换
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"]
}
}
}time · 安装
安装选项
**使用 uv(推荐):**
uvx mcp-server-time**使用 PIP:**
pip install mcp-server-time
python -m mcp_server_time**为 Claude Desktop 配置:**
{
"mcpServers": {
"time": {
"command": "uvx",
"args": ["mcp-server-time"]
}
}
}