time vs image-processing-mcp-server
并排对比,帮你在这两个 MCP server 之间做选择。
time by modelcontextprotocol | image-processing-mcp-server by rafael-castelo | |
|---|---|---|
| Stars | ★ 85,748 | ★ 1 |
| 30天用量 | — | — |
| 综合分 | 77 | 28 |
| 官方 | ✓ | — |
| 分类 | 效率工具开发者工具沟通协作 | 多媒体开发者工具本地文件系统 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 本月 | 12 个月前 |
time · 概述
功能全面的 MCP 服务器,提供时间和时区转换功能,可自动检测系统时区。
image-processing-mcp-server · 概述
MCP 服务器,提供图像处理功能,包括调整大小、压缩、格式转换、元数据提取和裁剪。
time · 使用场景
- 协助安排跨时区的国际会议
- 为基于位置的查询提供实时时间信息
- 为旅行计划和行程安排提供时间转换
image-processing-mcp-server · 使用场景
- 自动调整网站图像以适应不同的响应式布局
- 批量转换大型图像库为更高效的格式
- 从图像中提取元数据用于编目或分析目的
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"]
}
}
}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" ] } } }