drio
Open app

Illustrator MCP Server

Source

Mirror of

Catalog onlyCatalog onlySTDIO

Overview

The Illustrator MCP Server enables bots to send JavaScript scripts directly to Adobe Illustrator, facilitating automated graphic design tasks.

To use this server, configure it using the Claude Desktop application on MacOS. Implement the required AppleScript dependency and ensure the JSON configuration file is correctly set up for Illustrator commands.

  • Direct scripting capabilities for Adobe Illustrator through bots. - Compatibility with JavaScript for streamlined automation. - Designed specifically for MacOS and integrated with Claude Desktop.
  1. Automating repetitive graphic design tasks in Illustrator.
  2. Generating complex illustrations programmatically.
  3. Streamlining the workflow for designers using automated scripts.

Add to your AI client

Use these steps to connect Illustrator MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "spencerhhubert-illustrator-mcp-server-mcp-mirror": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-spencerhhubert-illustrator-mcp-server-mcp-mirror"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "spencerhhubert-illustrator-mcp-server-mcp-mirror": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-spencerhhubert-illustrator-mcp-server-mcp-mirror"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "spencerhhubert-illustrator-mcp-server-mcp-mirror": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-spencerhhubert-illustrator-mcp-server-mcp-mirror"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "spencerhhubert-illustrator-mcp-server-mcp-mirror": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-spencerhhubert-illustrator-mcp-server-mcp-mirror"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "spencerhhubert-illustrator-mcp-server-mcp-mirror": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-spencerhhubert-illustrator-mcp-server-mcp-mirror"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "spencerhhubert-illustrator-mcp-server-mcp-mirror": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-spencerhhubert-illustrator-mcp-server-mcp-mirror"
      ]
    }
  }
}

FAQ

Is this server compatible with Windows?

No, the Illustrator MCP Server is only compatible with MacOS due to its reliance on AppleScript.

What do I need to install it?

You need the Claude Desktop application and proper JSON configuration for running Illustrator commands.

Can I run multiple scripts at once?

Yes, scripts can be queued and executed one after another, automating various design tasks.