EverArt Forge MCP is a server that integrates with Cline to enable AI-powered image generation in both vector and raster formats. It connects to EverArt's AI models, allowing you to create high-quality images through simple prompts while offering flexible storage options and format handling.
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:
Add the server to your Cline MCP settings file:
For VS Code Extension:
Edit the settings file located at:
~/Library/Application Support/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json
Add the following configuration:
{
"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 the configuration file located at ~/Library/Application Support/Claude/claude_desktop_config.json
(macOS) or the appropriate location for your operating system.
Restart Cline to load the new MCP server
You can use natural language prompts in Cline to generate images, such as:
This tool creates images based on your specifications:
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)
Important notes:
Lists all previously generated images stored by the server.
Opens a specific image in your default image viewer:
Parameters:
- filename: Name of the image file to view
If you encounter issues:
list_images
tool to check available imagesTo add this MCP server to Claude Code, run this command in your terminal:
claude mcp add-json "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":[]}'
See the official Claude Code MCP documentation for more details.
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > Tools & Integrations and click "New MCP Server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"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": []
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explicitly ask the agent to use the tool by mentioning the tool name and describing what the function does.
To add this MCP server to Claude Desktop:
1. Find your configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%\Claude\claude_desktop_config.json
~/.config/Claude/claude_desktop_config.json
2. Add this to your configuration file:
{
"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": []
}
}
}
3. Restart Claude Desktop for the changes to take effect