time vs image-processing-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | image-processing-mcp-server by rafael-castelo | |
|---|---|---|
| Stars | ★ 85,748 | ★ 1 |
| 30d uses | — | — |
| Score | 77 | 28 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | MediaDeveloper ToolsFile System |
| Language | TypeScript | TypeScript |
| Last commit | this month | 12 mo ago |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
image-processing-mcp-server · Summary
MCP server for image processing tasks including resizing, compression, format conversion, metadata extraction, and cropping.
time · Use cases
- Assisting with international meeting scheduling across time zones
- Providing real-time time information for location-based queries
- Enabling time conversion for travel planning and itineraries
image-processing-mcp-server · Use cases
- Automatically resize website images for different responsive layouts
- Batch convert large image libraries to more efficient formats
- Extract metadata from images for cataloging or analysis purposes
time · Install
Installation Options
**Using uv (recommended):**
uvx mcp-server-time**Using PIP:**
pip install mcp-server-time
python -m mcp_server_time**Configure for Claude Desktop:**
{
"mcpServers": {
"time": {
"command": "uvx",
"args": ["mcp-server-time"]
}
}
}image-processing-mcp-server · Install
Installation
- **Prerequisites:** Node.js (version 14 or higher recommended) and npm
- **Clone and install:**
``bash git clone git@github.com/rafael-castelo/image-processing-mcp-server.git cd image-processing-mcp npm install npm run build ``
- **Configure in Claude Desktop:**
``json { "mcpServers": { "image-processing": { "command": "node", "args": ["path/to/mcp/server/build/index.js"] } } } ``
- **Using with Cursor (NPX):**
```json { "mcpServers": { "image-processing": { "command": "npx", "args": [ "-y", "image-processing-mcp-server" ] } } }