drio
Open app

Mavae Image Toolbox

Source

MAVAE IMAGE TOOLBOX is a Model Context Protocol (MCP) server for interacting with image media tools. 🚀 Image Generation | 🚀 Image Editing | 🚀 Collection Management | 🚀 Model & Lora Management

Catalog onlyCatalog onlySTDIO

Overview

Mavae is a powerful creative and editing toolkit designed for AI Agents, providing a standardized interface for generating and manipulating images.

To use Mavae, install the necessary dependencies, set up your MAVAE API Key as an environment variable, and start the server using Node.js. You can also run it in a Docker container.

  • Image Generation: Generate images using raw configurations and predefined collections. - Image Editing: Compress and crop images easily. - Collection Management: Create, manage, and share configurations for consistent image generation. - Model & Lora Management: List and utilize available models and Loras. - API Token Management: Handle authentication for secure interaction with Mavae services.
  1. Generating unique images for creative projects.
  2. Editing images for web applications.
  3. Managing collections of image configurations for consistent outputs.

Add to your AI client

Use these steps to connect Mavae Image Toolbox 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": {
    "mavae-image-toolbox-mavae": {
      "command": "node",
      "args": [
        "root/dist/index.js"
      ],
      "env": {
        "MAVAE_API_KEY": "MAVAE_API_KEY"
      }
    }
  }
}

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": {
    "mavae-image-toolbox-mavae": {
      "command": "node",
      "args": [
        "root/dist/index.js"
      ],
      "env": {
        "MAVAE_API_KEY": "MAVAE_API_KEY"
      }
    }
  }
}

Claude Code

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

.mcp.json (project root)

{
  "mcpServers": {
    "mavae-image-toolbox-mavae": {
      "command": "node",
      "args": [
        "root/dist/index.js"
      ],
      "env": {
        "MAVAE_API_KEY": "MAVAE_API_KEY"
      }
    }
  }
}

VS Code (Copilot)

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

.vscode/mcp.json

{
  "servers": {
    "mavae-image-toolbox-mavae": {
      "type": "stdio",
      "command": "node",
      "args": [
        "root/dist/index.js"
      ],
      "env": {
        "MAVAE_API_KEY": "MAVAE_API_KEY"
      }
    }
  }
}

Windsurf

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

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mavae-image-toolbox-mavae": {
      "command": "node",
      "args": [
        "root/dist/index.js"
      ],
      "env": {
        "MAVAE_API_KEY": "MAVAE_API_KEY"
      }
    }
  }
}

Cline

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

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mavae-image-toolbox-mavae": {
      "command": "node",
      "args": [
        "root/dist/index.js"
      ],
      "env": {
        "MAVAE_API_KEY": "MAVAE_API_KEY"
      }
    }
  }
}

FAQ

Can Mavae be used for all types of image editing?

Yes! Mavae supports various image editing features including compression and cropping.

Is Mavae free to use?

The usage of Mavae may depend on the API key and associated costs, please check the official documentation for details.

What are the prerequisites for using Mavae?

You need Node.js (v16 or higher) and a valid MAVAE API Key.