Generate images using Replicate's Flux 1.1 Pro model.
An MCP server for generating images using Replicate's Flux 1.1 Pro model.
You can use the MCP server directly from GitHub in several ways:
pip install git+https://github.com/yourusername/replicate-designer.git
Then run it with:
mcp-replicate-designer
Create a configuration file (e.g., mcps.json
):
{
"mcpServers": {
"replicateDesigner": {
"command": "npx",
"args": [
"-y",
"github:yourusername/replicate-designer"
],
"env": {
"REPLICATE_API_TOKEN": "your_replicate_api_token_here"
}
}
}
}
Then use it with Claude or another assistant:
npx @anthropic-ai/assistant --mcps-json mcps.json
This method allows you to include your Replicate API token directly in the configuration file, which is more convenient than setting environment variables separately.
Clone the repository and install from the local directory:
git clone https://github.com/yourusername/replicate-designer.git
cd replicate-designer
pip install -e .
To make your MCP available via npm (for easier distribution):
# Build a wheel
pip install build
python -m build
# Publish to npm (after setting up an npm account)
npm init
npm publish
npx -y mcp-replicate-designer
There are several ways to provide your Replicate API token:
Environment variable (for command line usage):
export REPLICATE_API_TOKEN=your_api_token_here
In the MCP configuration file (as shown in Option 2 above):
{
"mcpServers": {
"replicateDesigner": {
"command": "...",
"args": ["..."],
"env": {
"REPLICATE_API_TOKEN": "your_replicate_api_token_here"
}
}
}
}
Using a .env file in your project directory:
REPLICATE_API_TOKEN=your_api_token_here
Then, install the python-dotenv package:
pip install python-dotenv
Security Note: Be careful with your API tokens. Never commit them to public repositories, and use environment variables or secure secret management when possible.
mcp-replicate-designer
By default, it runs in stdio mode which is compatible with npx use. You can also run it in SSE mode:
mcp-replicate-designer --transport sse --port 8000
This MCP can be used with an AI agent using npx in two ways:
npx @anthropic-ai/assistant --mcp mcp-replicate-designer
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
This MCP exposes a single tool:
Generates an image using Replicate's Flux 1.1 Pro model.
Parameters:
prompt
(string, required): Text description of the image to generateaspect_ratio
(string, optional, default: "1:1"): Aspect ratio for the generated imageoutput_format
(string, optional, default: "webp"): Format of the output imageoutput_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 upsamplingExample:
{
"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"
}
A cloud infrastructure from Alibaba Cloud for AI Agents, featuring one-click configuration and serverless execution.
An MCP server for the Dynatrace observability platform.
An MCP server for interacting with the Kayzen Analytics API, requiring credentials configured via environment variables.
Access the Hugging Face Dataset Viewer API to query, explore, search, and analyze machine learning datasets from the Hugging Face Hub.
Access eBay Analytics data via the CData JDBC Driver.
Interact with Honeycomb observability data using the Model Context Protocol.
A remote, authentication-free MCP server deployable on Cloudflare Workers.
A security-focused MCP server for performing safe operations on an Ubuntu system, featuring robust security controls and audit logging.
A server for interacting with the OpenAI API. Requires an API key.
Administer Google Workspace using the GAM command-line tool.