A Model Context Protocol (MCP) server that enables live control of Inkscape through natural language instructions. This allows AI assistants like Claude to directly manipulate vector graphics in real-time.
- ๐ฏ Live Instance Control - Direct manipulation of running Inkscape documents
- โก D-Bus Integration - Real-time communication
- ๐ Universal Element Creation - Create any SVG element with unified syntax
- ๐๏ธ Hierarchical Scene Management - Semantic organization with automatic ID collision handling
- ๐ Python Code Execution - Run arbitrary inkex code in live context
- ๐ผ๏ธ Screenshot Support - Visual feedback with viewport capture
โ ๏ธ Currently Linux Only - Uses D-Bus which is Linux-specific- ๐ฎ Future: Cross-platform support possible via TCP sockets/named pipes
- Go to the Releases page
- Download
inkmcp-extension.zipfrom the latest release - Extract it to your Inkscape extensions directory:
cd ~/.config/inkscape/extensions/ unzip ~/Downloads/inkmcp-extension.zip
cd ~/.config/inkscape/extensions/inkmcp
chmod +x run_inkscape_mcp.sh inkmcpcli.py inkscape_mcp_server.py main.pyLaunch Inkscape normally - the extension is hidden from the menu and only accessible via D-Bus.
Auto-Setup: The first time an AI client connects, it will automatically:
- Create Python virtual environment in
~/.config/inkscape/extensions/inkmcp/venv/ - Install all required dependencies from
requirements.txt - Start the MCP server
No manual setup required!
Edit your Claude configuration file:
# ~/.claude/claude-config.json{
"mcpServers": {
"inkscape": {
"command": "/home/USERNAME/.config/inkscape/extensions/inkmcp/run_inkscape_mcp.sh"
}
}
}Update Claude desktop app settings:
{
"mcpServers": {
"inkscape": {
"command": "/home/USERNAME/.config/inkscape/extensions/inkmcp/run_inkscape_mcp.sh"
}
}
}For Gemini, edit settings file:
# ~/.gemini/settings.json{
"mcpServers": {
"inkscape-mcp": {
"command": "/home/USERNAME/.config/inkscape/extensions/inkmcp/run_inkscape_mcp.sh"
}
}
}For Codex, edit configuration:
# ~/.codex/config.toml[mcp_servers.inkscape-mcp]
command = "/home/USERNAME/.config/inkscape/extensions/inkmcp/run_inkscape_mcp.sh""In Inkscape, draw a smooth sine wave starting at the left edge in the middle of the document and apply power stroke path effect to it"
"In Inkscape, create a beautiful logo with a radial gradient circle and elegant typography"
"In Inkscape, draw a mathematical spiral using varying circle sizes with golden ratio"
"In Inkscape, create a house illustration with gable roof, wooden door, and flower garden"
"In Inkscape, design a data visualization chart with bars with hatch fill and labels using current document size"
"In Inkscape, export the current document as high-resolution PNG for presentation"
inkscape_operation - Universal tool for all Inkscape operations:
- Create any SVG element (circle, rect, text, path, gradient, etc.)
- Execute Python/inkex code in live context
- Get document/selection information
- Export viewport screenshots
- Hierarchical element creation with groups
- Automatic ID collision handling
- Extension:
inkscape_mcp.py- Inkscape extension triggered via D-Bus - MCP Server:
inkscape_mcp_server.py- FastMCP server handling AI requests - CLI Client:
inkmcpcli.py- Direct command-line interface for testing - Operations:
inkmcpops/- Modular operation handlers
AI Assistant โ MCP Server โ CLI Client โ D-Bus โ Inkscape Extension โ Live Document
# In the inkmcp directory - bypasses AI assistant for direct control
# Basic shapes
python inkmcpcli.py circle "cx=100 cy=100 r=50 fill=red"
python inkmcpcli.py rect "x=0 y=0 width=200 height=100 stroke=blue"
# Gradients
python inkmcpcli.py linearGradient "x1=0 y1=0 x2=200 y2=200 stops='[[\"0%\",\"green\"],[\"50%\",\"yellow\"],[\"100%\",\"red\"]]'"
# Code execution
python inkmcpcli.py execute-code "code='circle = inkex.Circle(); circle.set(\"cx\", \"150\"); circle.set(\"cy\", \"100\"); circle.set(\"r\", \"25\"); svg.append(circle)'"
# Document info
python inkmcpcli.py get-info
# Selection info
python inkmcpcli.py get-selection
# Export screenshot
python inkmcpcli.py export-document-image "format=png max_size=800"Execute any Python/inkex code in the live Inkscape context:
# Create complex shapes programmatically
code = '''
rect = Rectangle()
rect.set('x', '10')
rect.set('y', '20')
rect.set('width', '100')
rect.set('height', '50')
rect.set('style', 'fill:blue;stroke:red;stroke-width:2')
svg.append(rect)
'''- D-Bus not found: Ensure you're on Linux with D-Bus session running
- Extension not triggered: Check Inkscape is running and extension is installed
- Python environment: Ensure virtual environment is activated with dependencies
- Permissions: Make sure scripts are executable (
chmod +x *.sh *.py)
# Check D-Bus connection
gdbus introspect --session --dest org.inkscape.Inkscape --object-path /org/inkscape/Inkscape
# Structured JSON output
python inkmcpcli.py get-info --parse-out --pretty- Create new file in
inkmcpops/ - Implement
execute(svg, params)function - Add corresponding MCP tool in
inkscape_mcp_server.py