Labsco
noeltg77 logo

Replicate Designer

from noeltg77

Generate images using Replicate's Flux 1.1 Pro model.

๐Ÿ”ฅ๐Ÿ”ฅ๐Ÿ”ฅโœ“ VerifiedAccount requiredAdvanced setup

Replicate Designer MCP

An MCP server for generating images using Replicate's Flux 1.1 Pro model.

Using with npx

This MCP can be used with an AI agent using npx in two ways:

Direct command line

npx @anthropic-ai/assistant --mcp mcp-replicate-designer

As a configuration object

In your configuration JSON:

{
  "mcpServers": {
    "replicateDesigner": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-replicate-designer"
      ]
    }
  }
}

Then use it with:

npx @anthropic-ai/assistant --mcps-json /path/to/your/config.json

Tool

This MCP exposes a single tool:

generate_image

Generates an image using Replicate's Flux 1.1 Pro model.

Parameters:

  • prompt (string, required): Text description of the image to generate
  • aspect_ratio (string, optional, default: "1:1"): Aspect ratio for the generated image
  • output_format (string, optional, default: "webp"): Format of the output image
  • output_quality (integer, optional, default: 80): Quality of the output image (1-100)
  • safety_tolerance (integer, optional, default: 2): Safety tolerance level (0-3)
  • prompt_upsampling (boolean, optional, default: true): Whether to use prompt upsampling

Example:

{
  "prompt": "A photograph of an humanoid AI agent looking sad and in disrepair, the agent is sat at a workbench getting fixed by a human male",
  "aspect_ratio": "1:1",
  "output_format": "webp"
}