Back to MCP directory
publicPublicdnsLocal runtime

illustrator-mcp-server

Illustrator脚本服务

article

README

🚀 插画师MCP服务器

Adobe Illustrator可与JavaScript兼容。实际上,若要通过脚本实现某些重要工作的自动化,就需要用到这些脚本。机器人非常适合编写JavaScript。

此MCP服务器允许机器人直接将脚本发送到Illustrator并查看结果。

由于该服务器依赖于AppleScript,因此仅兼容MacOS系统。我仅在Claude Desktop上进行了测试。 ~/Library/Application\ Support/Claude/claude_desktop_config.json

{
    "mcpServers": {
        "illustrator": {
            "command": "uv",
            "args": [
                "--directory",
                "/Users/you/code/mcp/illustrator-mcp-server",
                "run",
                "illustrator"
            ]
        }
    }
}
help

Runtime guide

cloud

Hosted runtime

Hosted servers run from a provider-managed environment. You usually connect the MCP client to the hosted endpoint or follow the provider's authorization flow, without keeping a local process alive

  1. Open provider connection page
  2. Authorize or copy endpoint
  3. Connect from your MCP client
terminal

Local runtime / other methods

Local servers run on your own machine or infrastructure. You normally copy the server_config into your MCP client, install the required package, and provide env variables from env_schema when needed

  1. Copy server_config
  2. Install required package
  3. Fill env variables and restart client