Replicate Flux MCP
MCP for Replicate Flux Model - A powerful tool for generating customized images and SVG assets that match specific coding vibes and aesthetic styles. Streamline your visual asset creation process with AI-powered design generation tailored for developers.
Overview
Replicate Flux MCP is a powerful Model Context Protocol (MCP) server that enables AI assistants to generate images using Black Forest Labs' Flux Schnell model and SVG images using Recraft's V3 SVG model via Replicate's API.
To use Replicate Flux MCP, install it via NPM or use it directly with NPX by providing your Replicate API token. You can also integrate it with various MCP clients like Cursor and Claude.
- High-Quality Image Generation using Flux Schnell model - SVG Image Generation with Recraft V3 SVG model - Seamless integration with AI assistants - Customizable parameters for image generation - Local processing for security - Prediction management to view generation history
- Generating high-quality images for creative projects.
- Creating vector graphics for web and print design.
- Integrating with AI assistants for automated image generation.
Add to your AI client
Use these steps to connect Replicate Flux MCP in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"replicate-flux-mcp-awkoy": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-replicate-flux-mcp-awkoy"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"replicate-flux-mcp-awkoy": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-replicate-flux-mcp-awkoy"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"replicate-flux-mcp-awkoy": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-replicate-flux-mcp-awkoy"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"replicate-flux-mcp-awkoy": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-replicate-flux-mcp-awkoy"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"replicate-flux-mcp-awkoy": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-replicate-flux-mcp-awkoy"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"replicate-flux-mcp-awkoy": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-replicate-flux-mcp-awkoy"
]
}
}
}FAQ
Can I generate both raster and vector images?
Yes! You can generate images using both the Flux Schnell model and the Recraft V3 SVG model.
Is there a local processing option?
Yes! All requests are processed locally for enhanced security.
How do I integrate it with my existing projects?
You can integrate it with various MCP clients by following the provided installation and configuration instructions.