recraft-mcp-server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@recraft-mcp-servergenerate an image of a sunset over mountains"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Note: This is an unofficial, community-maintained project and is not affiliated with or endorsed by Recraft.
16 tools for image generation, processing, and style management — all accessible through the Model Context Protocol.
Generate — Text-to-image, image-to-image, inpainting, background replacement & generation
Process — Background removal, region erasing, vectorization (SVG), crisp & creative upscaling
Styles — Create custom styles from reference images, list/get/delete styles
Account — Check remaining credits and user info (included in
stylestoolset)Configurable — Filter toolsets, adjust cache TTL, control retries
Prerequisites
Node.js 20+ (or Docker)
Installation
Claude Desktop
Add to your config file:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"recraft": {
"command": "npx",
"args": ["-y", "recraft-mcp"],
"env": {
"RECRAFT_API_TOKEN": "your-api-token"
}
}
}
}VS Code
Add to .vscode/mcp.json in your workspace (or use the one-click install buttons above):
{
"servers": {
"recraft": {
"command": "npx",
"args": ["-y", "recraft-mcp"],
"env": {
"RECRAFT_API_TOKEN": "your-api-token"
}
}
}
}Claude Code
claude mcp add recraft-mcp -e RECRAFT_API_TOKEN=your-api-token -- npx -y recraft-mcpCursor
Add to Cursor's MCP settings (~/.cursor/mcp.json):
{
"mcpServers": {
"recraft": {
"command": "npx",
"args": ["-y", "recraft-mcp"],
"env": {
"RECRAFT_API_TOKEN": "your-api-token"
}
}
}
}Windsurf
Add to Windsurf's MCP config (~/.codeium/windsurf/mcp_config.json):
{
"mcpServers": {
"recraft": {
"command": "npx",
"args": ["-y", "recraft-mcp"],
"env": {
"RECRAFT_API_TOKEN": "your-api-token"
}
}
}
}Docker
docker run --rm -i -e RECRAFT_API_TOKEN="your-api-token" ghcr.io/bartwaardenburg/recraft-mcp-server:latestUse Docker in any MCP client by replacing the command:
{
"mcpServers": {
"recraft": {
"command": "docker",
"args": [
"run", "--rm", "-i",
"-e", "RECRAFT_API_TOKEN=your-api-token",
"ghcr.io/bartwaardenburg/recraft-mcp-server:latest"
]
}
}
}Smithery
npx -y @smithery/cli install recraft-mcp --client claudeTools
Generation
Tool | Description |
| Generate images from a text prompt with style, size, and artistic controls |
| Transform an existing image based on a text prompt with adjustable strength |
| Fill in masked regions of an image based on a text prompt |
| Replace the background while preserving the foreground subject |
| Generate a background for masked areas of an image |
Processing
Tool | Description |
| Remove the background, leaving transparency |
| Seamlessly erase a masked region from an image |
| Convert raster images to scalable SVG vectors |
| Upscale with sharp detail preservation |
| Upscale with creative enhancement and added detail |
Styles & Account
Tool | Description |
| Create a custom style from 1-5 reference images |
| Get details of a custom style by ID |
| List all custom styles |
| List available curated styles |
| Delete a custom style |
| Get user info and remaining credits |
Tool Annotations
All tools include MCP tool annotations to help clients understand their behavior:
Tool | Read-only | Open-world |
| Yes | |
| Yes | |
| Yes | |
| Yes | |
| Yes | |
| Yes | |
| Yes | |
| Yes | |
| Yes | |
| Yes | |
| Yes | |
| Yes | Yes |
| Yes | Yes |
| Yes | Yes |
| Yes | |
| Yes | Yes |
generate_image
Parameter | Type | Required | Description |
| string | Yes | Text description (max 1000 chars V2/V3, 10000 V4) |
| enum |
| |
| enum |
| |
| string | Substyle refinement (e.g. | |
| uuid | Custom style ID (mutually exclusive with style/substyle) | |
| enum | Image dimensions, e.g. | |
| integer | Number of images to generate (1-6, default 1) | |
| string | What to avoid in the image | |
| integer | 0 (simple) to 5 (dynamic) | |
| boolean | Prevent text in the image | |
| enum |
| |
| integer | Seed for reproducible results |
image_to_image
Parameter | Type | Required | Description |
| string | Yes | Source image (URL or base64). Max 5MB, <16MP, max 4096px per side |
| string | Yes | Description of desired changes |
| number | Yes | Change magnitude: 0.0 (minimal) to 1.0 (maximum) |
| enum | Model to use | |
| enum | Style category (not supported for V4) | |
| string | Substyle refinement | |
| uuid | Custom style ID | |
| integer | Number of outputs (1-6) | |
| string | What to avoid | |
| enum |
| |
| integer | Seed for reproducibility |
inpaint_image
Parameter | Type | Required | Description |
| string | Yes | Source image (URL or base64) |
| string | Yes | Grayscale PNG mask (white = inpaint, black = preserve) |
| string | Yes | What to generate in the masked area |
| Same as generate_image |
replace_background
Parameter | Type | Required | Description |
| string | Yes | Source image (URL or base64) |
| string | Yes | Description of the new background |
| Same as generate_image |
generate_background
Parameter | Type | Required | Description |
| string | Yes | Source image (URL or base64) |
| string | Yes | Mask defining the background area |
| string | Yes | Description of the background to generate |
| Same as generate_image |
remove_background
Parameter | Type | Required | Description |
| string | Yes | Image (URL or base64) |
| enum |
|
erase_region
Parameter | Type | Required | Description |
| string | Yes | Source image (URL or base64) |
| string | Yes | Grayscale mask (white = erase, black = preserve) |
| enum |
|
vectorize_image
Parameter | Type | Required | Description |
| string | Yes | Image to vectorize (URL or base64) |
crisp_upscale
Parameter | Type | Required | Description |
| string | Yes | Image to upscale (URL or base64). Max 5MB, <4MP |
| enum |
|
creative_upscale
Parameter | Type | Required | Description |
| string | Yes | Image to upscale (URL or base64). Max 5MB, <16MP |
| enum |
|
create_style
Parameter | Type | Required | Description |
| string[] | Yes | 1-5 reference images (URLs or base64) |
| enum | Yes | Base style category |
get_style
Parameter | Type | Required | Description |
| uuid | Yes | Style ID to retrieve |
delete_style
Parameter | Type | Required | Description |
| uuid | Yes | Style ID to delete |
list_styles, list_basic_styles, get_current_user
No parameters required.
Configuration
Environment Variable | Description | Default |
| Required. Your Recraft API token | — |
| Comma-separated toolsets to enable: | All |
| Cache TTL in seconds ( |
|
| Max retry attempts on rate limit (429) |
|
Toolset Filtering
Reduce the number of tools exposed to the LLM by enabling only what you need:
# Only image generation
RECRAFT_TOOLSETS=generation
# Generation + processing, no style management
RECRAFT_TOOLSETS=generation,processingSupported Models
Model | Description |
| Recraft V3 (default) |
| Recraft V4 (latest raster) |
| Recraft V4 Vector (SVG output) |
| Recraft V2 |
| Recraft 20B (legacy) |
| RefM1 |
Note: V4 models do not support the
styleparameter — use the prompt to control style.
Supported Styles
Style | Substyles |
|
|
|
|
|
|
|
|
| — |
Image Input
Tools that accept images (image_to_image, inpaint_image, remove_background, etc.) support:
URL — Any publicly accessible HTTP(S) URL
Base64 — Raw base64-encoded image data
Security
API token — Your
RECRAFT_API_TOKENis sent only to the Recraft API (https://external.api.recraft.ai). It is never logged or stored beyond the process lifetime.Image data — Images are sent to Recraft's servers for processing. No image data is cached on disk.
Network access — This server makes outbound HTTPS requests to
external.api.recraft.aiandregistry.npmjs.org(for update checks).
See SECURITY.md for reporting vulnerabilities.
Development
pnpm install # Install dependencies
pnpm dev # Run with tsx (hot reload)
pnpm build # Compile TypeScript
pnpm test # Run tests
pnpm typecheck # Type checkSee CONTRIBUTING.md for guidelines.
License
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/BartWaardenburg/recraft-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server