Illustrator MCP Server
Adobe Illustrator is compatible with JavaScript. In fact, some super big stuff you need to programmatically generate with these scripts. Bots are good at JavaScript.
This MCP server let's bots send scripts straight to Illustrator and look at the result.
Since it depends on AppleScript, it's only compatible with MacOS. and I've only tested it with 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"
]
}
}
}
Recommend MCP Servers 💡
ayushps1/remote-mcp-server
A remote Model Context Protocol (MCP) server designed to run on Cloudflare Workers, providing tools (like a math tool) accessible via SSE with OAuth login.
@pyroprompts/mcp-stdio-to-streamable-http-adapter
An MCP server that acts as a STDIO to Streamable HTTP adapter, enabling existing MCP clients to interact with Streamable HTTP MCP servers.
@bharathvaj/whois-mcp
MCP Server for whois lookups, allowing AI agents to perform domain, IP, ASN whois queries
PRIMS
PRIMS is a lightweight, open-source Model Context Protocol (MCP) server that lets LLM agents safely execute arbitrary Python code in a secure, throw-away sandbox.
mcp-code-executor
An MCP server enabling Large Language Models to execute Python code within configurable environments (Conda, virtualenv, UV virtualenv), supporting incremental code generation and dynamic environment configuration.
label-studio
This project provides a Model Context Protocol (MCP) server that allows interaction with a Label Studio instance using the label-studio-sdk. It enables programmatic management of labeling projects, tasks, and predictions via natural language or structured calls from MCP clients. Using this MCP Server, you can make requests like: * "Create a project in label studio with this data ..." * "How many tasks are labeled in my RAG review project?" * "Add predictions for my tasks." * "Update my labeling template to include a comment box."