A

Adobe Illustrator

Automate Illustrator actions via UXP.

·No reviews yet
Repo
Share:

About

Auto-generated

Adobe Illustrator is a Model Context Protocol server in the Design category. It lets AI assistants that speak MCP call its tools and read its resources over STDIO.

Example tools

Illustrative tool names — the actual tool set is defined by the server at runtime.

list_resources
Enumerate resources exposed by this MCP
get_resource
Fetch a resource by ID
invoke
Invoke the primary action of this MCP

Screenshots

No screenshots yet.

Frequently Asked Questions

Common questions about Adobe Illustrator.

What is the primary function of the Adobe Illustrator MCP?
This MCP allows for the automation of actions within Adobe Illustrator using UXP scripting. Developers can programmatically control Illustrator's features and workflows through this interface.
How can I install the Adobe Illustrator MCP in a client like Cursor?
Installation in a client like Cursor typically involves specifying the MCP's slug, 'adobe-illustrator', within the client's configuration or adding it via a client-specific interface. The transport method is 'stdio'.
Does the Adobe Illustrator MCP require an API key or other credentials for authentication?
No, this MCP does not require an API key, OAuth, or any other authentication credentials. The authentication type is listed as 'none'.
What are the key capabilities exposed by the Adobe Illustrator MCP?
The MCP's primary capability is to automate Adobe Illustrator actions via UXP. This enables scripting of various design tasks and interactions within the application.
Are there any licensing costs associated with using the Adobe Illustrator MCP?
The MCP itself is developed by the Community and available on GitHub, implying no direct cost for the MCP. However, Adobe Illustrator itself requires a license to operate.
What is a common limitation or prerequisite for using the Adobe Illustrator MCP?
A key prerequisite for using this MCP is having Adobe Illustrator installed and accessible. It relies on the underlying application for all its functionality.

Install Adobe Illustrator

Claude Desktop

Add this to claude_desktop_config.json.

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

Cursor

Add this to ~/.cursor/mcp.json.

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

VS Code

Add this to your workspace settings.json.

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

Reviews

Sign in to leave a review.

No reviews yet. Be the first!

Discussion(0)

Sign in to join the discussion.

No comments yet.