MCP Catalogs
Home

filesystem vs imagesorcery-mcp

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

filesystem
by modelcontextprotocol
imagesorcery-mcp
by sunriseapps
Stars★ 85,748★ 311
30d uses
Score7747
Official
Categories
File SystemDeveloper ToolsProductivity
AI / LLM ToolsMediaDeveloper Tools
LanguageTypeScriptPython
Last committhis month8 mo ago

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

imagesorcery-mcp · Summary

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

filesystem · Use cases

  • Enable AI models to read and write project files during development
  • Allow Claude or other MCP clients to browse and analyze codebases
  • Provide secure sandboxed access to specific directories for content generation

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

filesystem · Install

Installation

Using NPX

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/allowed/directory"
      ]
    }
  }
}

Using Docker

{
  "mcpServers": {
    "filesystem": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
        "mcp/filesystem",
        "/projects"
      ]
    }
  }
}

VS Code Extension

Click the installation buttons in the README to install directly in VS Code.

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.