MCP Catalogs
Home

everything vs imagesorcery-mcp

Side-by-side comparison to help you pick between these two MCP servers.

everything
by modelcontextprotocol
imagesorcery-mcp
by sunriseapps
Stars★ 85,748★ 311
30d uses
Score7747
Official
Categories
Developer ToolsAI / LLM ToolsOther
AI / LLM ToolsMediaDeveloper Tools
LanguageTypeScriptPython
Last committhis month8 mo ago

everything · Summary

Official MCP test server exercising all protocol features for client builders.

imagesorcery-mcp · Summary

ImageSorcery MCP provides powerful locally-run image processing tools for AI assistants.

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

imagesorcery-mcp · Use cases

  • Automatically categorize and organize images by content (e.g., find all pet photos in a folder)
  • Edit images by adding text, watermarks, or removing backgrounds without external software
  • Extract information from images using OCR and object detection for document processing

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

imagesorcery-mcp · Install

Installation

  1. **Install pipx (if not already installed):**

```bash # On macOS with Homebrew: brew install pipx

# On Ubuntu/Debian: sudo apt update && sudo apt install pipx ```

  1. **Install ImageSorcery MCP with pipx:**

``bash pipx install imagesorcery-mcp ``

  1. **Run the post-installation script:**

``bash imagesorcery-mcp --post-install ``

  1. **Configure in Claude Desktop:**

Add to your claude_desktop_config.json: ``json { "mcpServers": { "imagesorcery": { "command": "imagesorcery-mcp", "args": [] } } } ``

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