everything vs image-processing-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | image-processing-mcp-server by rafael-castelo | |
|---|---|---|
| Stars | ★ 85,748 | ★ 1 |
| 30d uses | — | — |
| Score | 77 | 28 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | MediaDeveloper ToolsFile System |
| Language | TypeScript | TypeScript |
| Last commit | this month | 12 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
image-processing-mcp-server · Summary
MCP server for image processing tasks including resizing, compression, format conversion, metadata extraction, and cropping.
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
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
everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everythingimage-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" ] } } }