MCP Catalogs
Home

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
Score7728
Official
Categories
Developer ToolsAI / LLM ToolsOther
MediaDeveloper ToolsFile System
LanguageTypeScriptTypeScript
Last committhis month12 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-everything

image-processing-mcp-server · Install

Installation

  1. **Prerequisites:** Node.js (version 14 or higher recommended) and npm
  2. **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 ``

  1. **Configure in Claude Desktop:**

``json { "mcpServers": { "image-processing": { "command": "node", "args": ["path/to/mcp/server/build/index.js"] } } } ``

  1. **Using with Cursor (NPX):**

```json { "mcpServers": { "image-processing": { "command": "npx", "args": [ "-y", "image-processing-mcp-server" ] } } }

Comparison generated from public README + GitHub signals. Last updated automatically.