A Model Context Protocol server that provides image compression and optimization capabilities through Zipic app.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"zipic": {
"command": "zipic-mcp-server"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A Model Context Protocol server that provides image compression capabilities. This server enables LLMs to compress and optimize images through simple and advanced compression tools. This is a Swift implementation of a zipic MCP server using the MCP Swift SDK.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in design
MCP server for accessing Figma plugin console logs and screenshots via Cloudflare Workers or local mode
Official Miro MCP server - Supports context to code and creating diagrams, docs, and data tables.
AI image generation and editing with prompt optimization and quality presets. Powered by Nano Banana
Coinbase Design System - MCP Server
MCP Security Weekly
Get CVE alerts and security updates for Zipic Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Model Context Protocol server that provides image compression capabilities. This server enables LLMs to compress and optimize images through simple and advanced compression tools. This is a Swift implementation of a zipic MCP server using the MCP Swift SDK.
quickCompress - Quickly compress images with default settings
urls (array, required): Array of file paths pointing to images or directories containing imagesadvancedCompress - Compress images with fine-tuned settings
urls (array, required): Array of file paths pointing to images or directories containing imageslevel (integer, optional): Compression level from 1-6 (1=highest quality, 6=maximum compression)format (string, optional): Output format ("original", "jpeg", "webp", "heic", "avif", "png")width (integer, optional): Target width for resizing (0 for auto-adjustment)height (integer, optional): Target height for resizing (0 for auto-adjustment)suffix (string, optional): Custom suffix for compressed file namesdirectory (string, optional): Output directory path for compressed imagesThe easiest way to install is with the one-line installer, which automatically downloads the latest version and installs it to ~/.local/bin in your home directory:
curl -fsSL https://raw.githubusercontent.com/okooo5km/zipic-mcp-server/main/install.sh | bash
The installer will:
~/.local/bin if it doesn't existClone the repository:
git clone https://github.com/okooo5km/zipic-mcp-server.git
cd zipic-mcp-server
Build the project:
swift build -c release
Install the binary:
# Install to user directory (recommended, no sudo required)
mkdir -p ~/.local/bin
cp $(swift build -c release --show-bin-path)/zipic-mcp-server ~/.local/bin/
Make sure ~/.local/bin is in your PATH by adding to your shell configuration file:
echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.zshrc # or ~/.bashrc
source ~/.zshrc # or source ~/.bashrc
The server supports the following command line arguments:
-h, --help: Display help information about the server, its usage, and available options-v, --version: Display the version number of the zipic-mcp-serverExample usage:
# Display help information
zipic-mcp-server --help
# Display version information
zipic-mcp-server --version
Add to your Claude settings:
"mcpServers": {
"zipic": {
"command": "zipic-mcp-server"
}
}
Add the following configuration to your Cursor editor's Settings - mcp.json:
{
"mcpServers": {
"zipic": {
"command": "zipic-mcp-server"
}
}
}
You can use the following system prompt to help Claude utilize the zipic-mcp-server effectively:
You have access to an image compression tool through MCP. Use this to help users:
- Compress single images or batches of images
- Reduce file size while maintaining quality
- Convert between image f
... [View full README on GitHub](https://github.com/okooo5km/zipic-mcp-server#readme)