drio
Open app

Zipic MCP Server

Source

A Model Context Protocol server that provides image compression and optimization capabilities through Zipic app.

Catalog onlyCatalog onlySTDIO

Overview

Zipic MCP Server is a Model Context Protocol server that provides image compression and optimization capabilities through the Zipic app, enabling LLMs to efficiently compress and optimize images.

To use the Zipic MCP Server, you can either download the pre-built binary or build it from source. After installation, configure it with your desired settings and use the available tools for image compression.

  • Quick and advanced image compression options. - Support for various output formats (webp, jpg, png). - Customizable compression levels and dimensions. - Integration capabilities with other applications like Claude.app.
  1. Compressing images for web applications to improve load times.
  2. Optimizing images for mobile applications to save bandwidth.
  3. Integrating with AI models for image processing tasks.

Add to your AI client

Use these steps to connect Zipic MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "zipic-mcp-server-okooo5km": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-zipic-mcp-server-okooo5km"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "zipic-mcp-server-okooo5km": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-zipic-mcp-server-okooo5km"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "zipic-mcp-server-okooo5km": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-zipic-mcp-server-okooo5km"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "zipic-mcp-server-okooo5km": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-zipic-mcp-server-okooo5km"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "zipic-mcp-server-okooo5km": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-zipic-mcp-server-okooo5km"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "zipic-mcp-server-okooo5km": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-zipic-mcp-server-okooo5km"
      ]
    }
  }
}

FAQ

What platforms does Zipic MCP Server support?

It supports macOS 14.0 and later.

Is there a license for Zipic MCP Server?

Yes, it is licensed under the MIT License, allowing free use and modification.

How can I configure Zipic MCP Server for other applications?

You can add configuration settings in the respective application settings as shown in the documentation.