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 | — | — |
| Score | 77 | 28 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | MediaDeveloper ToolsFile System |
| Language | TypeScript | TypeScript |
| Last commit | this month | 12 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
- **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" ] } } }