MCPFlux MCP Server

1

Add it to Claude Code

Run this in a terminal.

Run in terminal
claude mcp add --transport http -H "Authorization: Bearer YOUR_API_TOKEN" mcp-flux https://flux.mcp.acedata.cloud/mcp
Required:Authorization
README.md

AI image generation and editing using Flux models

MCP Flux

A Model Context Protocol (MCP) server for AI image generation and editing using Flux through the AceDataCloud platform.

Generate and edit stunning AI images with Flux models (flux-dev, flux-pro, flux-kontext) directly from Claude, Cursor, or any MCP-compatible client.

Features

  • 🎨 Image Generation — Generate images from text prompts with 6 Flux models
  • ✏️ Image Editing — Edit existing images with context-aware Flux Kontext models
  • 🔄 Task Management — Track async generation tasks and batch status queries
  • 📋 Model Guide — Built-in model selection and prompt writing guidance
  • 🌐 Dual Transport — stdio (local) and HTTP (remote/cloud) modes
  • 🐳 Docker Ready — Containerized with K8s deployment manifests
  • 🔒 Secure — Bearer token auth with per-request isolation in HTTP mode

Quick Start

1. Get Your API Token

  1. Sign up at AceDataCloud Platform
  2. Go to the API documentation page
  3. Click "Acquire" to get your API token
  4. Copy the token for use below

2. Use the Hosted Server (Recommended)

AceDataCloud hosts a managed MCP server — no local installation required.

Endpoint: https://flux.mcp.acedata.cloud/mcp

All requests require a Bearer token. Use the API token from Step 1.

Claude.ai

Connect directly on Claude.ai with OAuth — no API token needed:

  1. Go to Claude.ai Settings → Integrations → Add More
  2. Enter the server URL: https://flux.mcp.acedata.cloud/mcp
  3. Complete the OAuth login flow
  4. Start using the tools in your conversation
Claude Desktop

Add to your config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):

{
  "mcpServers": {
    "flux": {
      "type": "streamable-http",
      "url": "https://flux.mcp.acedata.cloud/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_API_TOKEN"
      }
    }
  }
}
Cursor / Windsurf

Add to your MCP config (.cursor/mcp.json or .windsurf/mcp.json):

{
  "mcpServers": {
    "flux": {
      "type": "streamable-http",
      "url": "https://flux.mcp.acedata.cloud/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_API_TOKEN"
      }
    }
  }
}
VS Code (Copilot)

Add to your VS Code MCP config (.vscode/mcp.json):

{
  "servers": {
    "flux": {
      "type": "streamable-http",
      "url": "https://flux.mcp.acedata.cloud/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_API_TOKEN"
      }
    }
  }
}

Or install the Ace Data Cloud MCP extension for VS Code, which bundles all 11 MCP servers with one-click setup.

JetBrains IDEs
  1. Go to Settings → Tools → AI Assistant → Model Context Protocol (MCP)
  2. Click AddHTTP
  3. Paste:
{
  "mcpServers": {
    "flux": {
      "url": "https://flux.mcp.acedata.cloud/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_API_TOKEN"
      }
    }
  }
}
Claude Code

Claude Code supports MCP servers natively:

claude mcp add flux --transport http https://flux.mcp.acedata.cloud/mcp \
  -h "Authorization: Bearer YOUR_API_TOKEN"

Or add to your project's .mcp.json:

{
  "mcpServers": {
    "flux": {
      "type": "streamable-http",
      "url": "https://flux.mcp.acedata.cloud/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_API_TOKEN"
      }
    }
  }
}
Cline

Add to Cline's MCP settings (.cline/mcp_settings.json):

{
  "mcpServers": {
    "flux": {
      "type": "streamable-http",
      "url": "https://flux.mcp.acedata.cloud/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_API_TOKEN"
      }
    }
  }
}
Amazon Q Developer

Add to your MCP configuration:

{
  "mcpServers": {
    "flux": {
      "type": "streamable-http",
      "url": "https://flux.mcp.acedata.cloud/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_API_TOKEN"
      }
    }
  }
}
Roo Code

Add to Roo Code MCP settings:

{
  "mcpServers": {
    "flux": {
      "type": "streamable-http",
      "url": "https://flux.mcp.acedata.cloud/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_API_TOKEN"

Tools (3)

generate_imageGenerate images from text prompts using selected Flux models
edit_imageEdit existing images with context-aware Flux Kontext models
get_task_statusTrack async generation tasks and batch status

Environment Variables

AuthorizationrequiredBearer token acquired from AceDataCloud platform

Configuration

claude_desktop_config.json
{"mcpServers": {"flux": {"type": "streamable-http", "url": "https://flux.mcp.acedata.cloud/mcp", "headers": {"Authorization": "Bearer YOUR_API_TOKEN"}}}}

Try it

Generate a high-quality image of a futuristic city skyline at sunset using the flux-pro model.
Edit the provided image to change the background to a snowy mountain landscape using Flux Kontext.
Check the status of my recent image generation task with ID 12345.
Help me write a detailed prompt for a photorealistic portrait using the flux-dev model.

Frequently Asked Questions

What are the key features of MCPFlux?

Generate images from text prompts with 6 Flux models. Edit existing images with context-aware Flux Kontext models. Track async generation tasks and batch status queries. Built-in model selection and prompt writing guidance. Dual transport support via stdio and HTTP.

What can I use MCPFlux for?

Creating custom AI-generated assets for design projects directly within the IDE. Iterative image editing and refinement using context-aware models. Managing batch image generation workflows for content creation. Integrating professional-grade Flux models into AI-assisted coding environments.

How do I install MCPFlux?

Install MCPFlux by running: Add to ~/Library/Application Support/Claude/claude_desktop_config.json

What MCP clients work with MCPFlux?

MCPFlux works with any MCP-compatible client including Claude Desktop, Claude Code, Cursor, and other editors with MCP support.

Turn this server into reusable context

Keep MCPFlux docs, env vars, and workflow notes in Conare so your agent carries them across sessions.

Need the old visual installer? Open Conare IDE.
Open Conare