everart forge mcp
An advanced MCP server for Cline that leverages EverArt's AI models to generate vector and raster images, supporting flexible storage, multiple formats, and robust image generation capabilities.
An advanced MCP server for Cline that leverages EverArt's AI models to generate vector and raster images, supporting flexible storage, multiple formats, and robust image generation capabilities.
An advanced Model Context Protocol (MCP) server for Cline that integrates with EverArt's AI models to generate both vector and raster images. This server provides powerful image generation capabilities with flexible storage options and format conversion.
Perfect for logos, icons, and scalable graphics
Raster Image Generation
High-quality image processing
Flexible Storage
Clone the repository:
git clone https://github.com/nickbaumann98/everart-forge-mcp.git
cd everart-forge-mcp
Install dependencies:
npm install
Build the project:
npm run build
Get your EverArt API key:
Create or copy your API key
Add the server to your Cline MCP settings file:
For VS Code Extension:
Edit ~/Library/Application Support/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json
:
{
"mcpServers": {
"everart-forge": {
"command": "node",
"args": ["/absolute/path/to/everart-forge-mcp/build/index.js"],
"env": {
"EVERART_API_KEY": "your_api_key_here"
},
"disabled": false,
"autoApprove": []
}
}
}
For Claude Desktop App:
Edit ~/Library/Application Support/Claude/claude_desktop_config.json
(macOS) or appropriate location for your OS
Once configured, you can use Cline to generate images with prompts like:
The server provides these tools:
Generate images with extensive customization options:
Parameters:
- prompt (required): Text description of desired image
- model: Model ID (5000:FLUX1.1, 9000:FLUX1.1-ultra, 6000:SD3.5, 7000:Recraft-Real, 8000:Recraft-Vector)
- format: Output format (svg, png, jpg, webp)
- output_path: Custom output path for the image
- web_project_path: Path to web project root for proper asset organization
- project_type: Web project type (react, vue, html, next, etc.)
- asset_path: Subdirectory within the web project assets
- image_count: Number of images to generate (1-10)
Notes: - SVG format is only available with Recraft-Vector (8000) model - Default format is "svg" for model 8000, "png" for others - You can specify combined model IDs (e.g., "8000:Recraft-Vector")
List all previously generated images stored by the server.
Open a specific image in the default image viewer:
Parameters:
- filename: Name of the image file to view
MIT License - see LICENSE file for details.