MCP Flux Studio bridges Flux's advanced image generation capabilities to AI coding assistants in Cursor and Windsurf (Codeium) IDEs. This TypeScript server implementation exposes four tools through the Model Context Protocol: text-to-image generation, image-to-image transformation, inpainting with customizable masks, and structural control generation (canny, depth, pose). It works by translating MCP tool calls into commands for the Flux CLI, executing them via Python, and returning the results to the IDE. Particularly valuable for developers who need to generate or manipulate images directly within their coding workflow without switching contexts.
Aucun avis encore. Soyez le premier à donner votre avis !
Connectez-vous pour rejoindre la conversation
Generates an image based on the provided prompt. Required Params: prompt. Optional Params: model, aspect_ratio, width, height, output. Output: Generated image path.
Transforms an image based on a prompt. Required Params: image, prompt, name. Optional Params: model, strength (0-1), width, height, output. Output: Transformed image path.
Inpaints an image based on a prompt. Required Params: image, prompt. Optional Params: mask_shape (circle/rectangle), position (center/ground), output. Output: Inpainted image path.
Controls an image using specified type and prompt. Required Params: type (canny/depth/pose), image, prompt. Optional Params: steps (1-100), guidance, output. Output: Controlled image path.