Generates, edits, blends, upscales, and describes images via AceDataCloud's Midjourney API. Use for AI image creation from text prompts, image editing, grid generation, variations, and reverse-prompting.
How this skill is triggered — by the user, by Claude, or both
Slash command
/acedatacloud-ai-media:midjourney-imageThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Generate and manipulate AI images through AceDataCloud's Midjourney API.
Generate and manipulate AI images through AceDataCloud's Midjourney API.
Setup: See authentication for token setup.
curl -X POST https://api.acedata.cloud/midjourney/imagine \
-H "Authorization: Bearer $ACEDATACLOUD_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{"prompt": "a futuristic city at sunset, cyberpunk style --ar 16:9", "callback_url": "https://api.acedata.cloud/health"}'
Async: See async task polling. Poll via
POST /midjourney/taskswith{"id": "..."}.
| Mode | Speed | Cost | Best For |
|---|---|---|---|
fast | Fast | Standard | Most tasks (default) |
relax | Slow | Cheaper | Batch generation |
turbo | Fastest | Premium | Time-sensitive work |
| Version | Notes |
|---|---|
8 | Latest, best quality |
7 | Great quality, fast |
6.1 | Stable, well-tested |
6 | Previous generation |
5.2 | Legacy |
Creates a 2x2 grid of 4 image variations.
POST /midjourney/imagine
{
"prompt": "a serene mountain lake at dawn, photorealistic --ar 16:9 --v 7",
"mode": "fast",
"translation": true,
"split_images": true
}
Set translation: true to auto-translate non-English prompts. Set split_images: true to get individual images besides the grid.
After generating a grid, use transform actions on individual images:
POST /midjourney/imagine
{
"action": "upscale1",
"image_id": "grid-image-id"
}
Available actions:
upscale1–upscale4: Upscale individual quadrantvariation1–variation4: Create variation of a quadrantvariation_subtle / variation_strong: Subtle/strong variation of full imagereroll: Re-generate with same promptzoom_out_2x / zoom_out_1_5x: Zoom outpan_left / pan_right / pan_up / pan_down: Extend canvasModify an existing image using a text prompt, optionally with a mask.
POST /midjourney/edits
{
"image_url": "https://example.com/photo.jpg",
"prompt": "add a rainbow in the sky",
"mode": "fast"
}
Combine 2–5 images into a new composition.
POST /midjourney/imagine
{
"action": "blend",
"image_urls": [
"https://example.com/image1.jpg",
"https://example.com/image2.jpg"
]
}
Get AI-generated text descriptions of an image (returns 4 options).
POST /midjourney/describe
{"image_url": "https://example.com/photo.jpg"}
Create a video with a reference image and text prompt.
POST /midjourney/videos
{
"image_url": "https://example.com/photo.jpg",
"prompt": "the city comes alive with moving traffic",
"resolution": "720p"
}
Append these to your prompt text:
| Parameter | Example | Description |
|---|---|---|
--ar | --ar 16:9 | Aspect ratio |
--v | --v 7 | Midjourney version |
--q | --q 2 | Quality (0.25, 0.5, 1, 2) |
--s | --s 750 | Stylization (0–1000) |
--c | --c 50 | Chaos/variety (0–100) |
--no | --no text, watermark | Negative prompt |
--seed | --seed 12345 | Reproducible generation |
These top-level fields on POST /midjourney/imagine affect billing and are separate from inline prompt parameters:
| Parameter | Type | Description |
|---|---|---|
version | string | Midjourney version ("8", "7", "6.1", etc.) — used for billing calculation |
hd | boolean | Enable HD 2K resolution (V8 only) — costs 4× GPU time |
quality | string | Quality level: ".25", ".5", "1", "2", "4" — quality "4" is V8 only and costs 4× GPU time |
style_reference | boolean | Whether prompt uses --sref style references (V8: costs 4× GPU time) |
moodboard | boolean | Whether prompt uses moodboard image references (V8: costs 4× GPU time) |
split_images: true to also receive individual cropped images alongside the grid--ar, --v, etc.) go inside the prompt string, not as separate fieldstranslation: true auto-translates Chinese/other languages to English before sending to Midjourneyimage_url — it cannot generate from text aloneavailable_actions in the responsePOST /midjourney/seed using the image_id for reproducible resultsMCP:
pip install mcp-midjourney| Hosted:https://midjourney.mcp.acedata.cloud/mcp| See all MCP servers
npx claudepluginhub acedatacloud/skills --plugin acedatacloud-ai-toolsCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.