Free graphic design software for Windows.
## Lunacy MCP Server: Free Design Tool Integration The **Lunacy MCP Server** integrates Icons8 Lunacy design tool directly into Google Antigravity, enabling AI assistants to work with Sketch-compatible files, access built-in assets, and manage design workflows programmatically. This integration brings professional design capabilities to your workflow completely free. ### Why Lunacy MCP? - **Sketch Compatibility**: Full support for opening, editing, and saving Sketch files natively - **Built-In Assets**: Access millions of free icons, photos, and illustrations directly in the tool - **AI-Powered Features**: Background removal, image upscaling, and avatar generation built-in - **Cross-Platform**: Native Windows app with consistent Sketch file support - **Completely Free**: Full-featured design tool with no subscription or licensing costs ### Key Features #### 1. File Operations ```python from anthropic import Anthropic client = Anthropic() response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Open this Sketch file and list all artboards with their dimensions" }], tools=[{ "name": "lunacy_files", "description": "Work with design files" }] ) ``` #### 2. Asset Library ```python # Access built-in assets response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Search for technology icons in the Lunacy asset library" }], tools=[{"name": "lunacy_assets", "description": "Access built-in assets"}] ) ``` #### 3. Export Operations ```python # Export design assets response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Export all symbols from this design file as SVG icons" }], tools=[{"name": "lunacy_export", "description": "Export design assets"}] ) ``` #### 4. AI Features ```python # Use AI-powered features response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Remove backgrounds from these product images using Lunacy AI" }], tools=[{"name": "lunacy_ai", "description": "AI-powered editing"}] ) ``` ### Configuration ```json { "mcpServers": { "lunacy": { "command": "npx", "args": ["-y", "@anthropic/mcp-lunacy"], "env": { "LUNACY_PATH": "/path/to/lunacy" } } } } ``` ### Use Cases **Sketch File Processing**: Open and manipulate Sketch files on Windows without Sketch license. **Asset Generation**: Generate icons and graphics from the built-in asset library. **Batch Export**: Export design assets in multiple formats and resolutions for development. **Quick Edits**: Make rapid design changes without full design tool overhead. The Lunacy MCP Server brings free professional design capabilities directly into your development workflow, with full Sketch compatibility.
{
"mcpServers": {
"lunacy": {}
}
}