A Model Context Protocol server that provides image compression and optimization capabilities through Zipic app.
{
"mcpServers": {
"zipic-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
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 and optimization capabilities through Zipic app.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 385 days ago. 4 stars.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Dynamic problem-solving through sequential thought chains
A Model Context Protocol server for searching and analyzing arXiv papers
An open-source AI agent that brings the power of Gemini directly into your terminal.
The official Python SDK for Model Context Protocol servers and clients
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)