MCP Catalogs
Home

filesystem vs image-processing-mcp-server

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

filesystem
by modelcontextprotocol
image-processing-mcp-server
by rafael-castelo
Stars★ 85,748★ 1
30d uses
Score7728
Official
Categories
File SystemDeveloper ToolsProductivity
MediaDeveloper ToolsFile System
LanguageTypeScriptTypeScript
Last committhis month12 mo ago

filesystem · Summary

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

image-processing-mcp-server · Summary

MCP server for image processing tasks including resizing, compression, format conversion, metadata extraction, and cropping.

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

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

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.

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.