everything vs illustrator-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | illustrator-mcp-server by spencerhhubert | |
|---|---|---|
| Stars | ★ 85,748 | ★ 50 |
| 30d uses | — | — |
| Score | 77 | 35 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsMediaProductivity |
| Language | TypeScript | Python |
| Last commit | this month | 17 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
illustrator-mcp-server · Summary
Adobe Illustrator MCP server allowing AI models to run JavaScript scripts directly in Illustrator.
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
illustrator-mcp-server · Use cases
- Automatically generating complex vector graphics designs
- Batch processing Illustrator files with AI-driven modifications
- Creating custom design automation workflows between AI and Illustrator
everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everythingillustrator-mcp-server · Install
- Clone the repository:
git clone https://github.com/spencerhhubert/illustrator-mcp-server.git - Install dependencies with uv:
uv sync - Configure Claude Desktop by adding the following to
~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"illustrator": {
"command": "uv",
"args": [
"--directory",
"/path/to/your/illustrator-mcp-server",
"run",
"illustrator"
]
}
}
}