
How to add Recraft MCP Server (Official) to Claude Desktop
Official Recraft server for raster and vector image generation, vectorization, and editing. Paste the config into ~/Library/Application Support/Claude/claude_desktop_config.json and restart Claude Desktop.
Last updated June 15, 2026 ยท 60โ ยท stdio ยท apikey ยท official
Claude Desktop config for Recraft MCP Server (Official)
npx -y @recraft-ai/mcp-recraft-server@latest{
"mcpServers": {
"recraft-mcp-server-official": {
"command": "npx",
"args": [
"-y",
"@recraft-ai/mcp-recraft-server@latest"
],
"env": {
"RECRAFT_API_KEY": "<your-api-key>",
"IMAGE_STORAGE_DIRECTORY": "/absolute/path/to/output/dir"
}
}
}
}Setup steps
- 1Open Claude Desktop โ Settings โ Developer โ Edit Config (this opens ~/Library/Application Support/Claude/claude_desktop_config.json).
- 2Paste the Recraft MCP Server (Official) config below under the top-level "mcpServers" key.
- 3Fill in any placeholder secrets (API keys, paths) in the snippet.
- 4Save the file, then fully quit and reopen Claude Desktop.
- 5Open a chat and confirm Recraft MCP Server (Official)'s tools appear under the ๐ tools menu.
Before you start
- Node.js installed (to run npx or node)
- A Recraft account at recraft.ai
- A Recraft API key generated from your profile's API page
- Recraft API credits purchased for your account (generation consumes credits)
- An MCP-capable client (Claude Desktop, Cursor, etc.)
What Recraft MCP Server (Official) can do in Claude Desktop
generate_imageGenerate a raster or vector image from a text prompt
image_to_imageTransform or edit an existing image guided by a prompt
vectorize_imageConvert a raster image into a vector (SVG)
create_styleCreate a reusable custom style from reference images
remove_backgroundRemove the background from an image
replace_backgroundReplace an image's background based on a prompt
crisp_upscaleUpscale an image with a crisp, detail-preserving model
creative_upscaleUpscale an image with a creative, detail-enhancing model
Security
The Recraft API key bills generation usage to your account; keep it in env. Generated images are saved to IMAGE_STORAGE_DIRECTORY (defaults under your home dir), so point it somewhere safe.
Recraft MCP Server (Official) + Claude Desktop FAQ
Where is the Claude Desktop config file?
Claude Desktop reads MCP servers from ~/Library/Application Support/Claude/claude_desktop_config.json. Paste the Recraft MCP Server (Official) config there under the "mcpServers" key and restart the client.
Is Recraft MCP Server (Official) safe to use with Claude Desktop?
The Recraft API key bills generation usage to your account; keep it in env. Generated images are saved to IMAGE_STORAGE_DIRECTORY (defaults under your home dir), so point it somewhere safe.
How do I get an API key?
Register at recraft.ai, then generate a key from your profile's API page; you'll also use that page to buy API credits.
Can it output real vector files?
Yes. generate_image can produce vector output and vectorize_image converts existing rasters into SVG vectors.
What's the easiest way to install it?
Download the .dxt Claude Desktop Extension from the latest GitHub release and double-click it; npx and from-source installs are also documented.