memory vs illustrator-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
memory by modelcontextprotocol | illustrator-mcp-server by spencerhhubert | |
|---|---|---|
| Stars | ★ 85,748 | ★ 50 |
| 30d uses | — | — |
| Score | 77 | 35 |
| Official | ✓ | — |
| Categories | Knowledge GraphAI / LLM ToolsProductivity | Developer ToolsMediaProductivity |
| Language | TypeScript | Python |
| Last commit | this month | 17 mo ago |
memory · Summary
An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.
illustrator-mcp-server · Summary
Adobe Illustrator MCP server allowing AI models to run JavaScript scripts directly in Illustrator.
memory · Use cases
- Personalizing AI assistant interactions by remembering user preferences, history, and relationships
- Building context-aware chat applications that maintain conversation history
- Creating knowledge bases that persist across AI model sessions
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
memory · Install
Installation
Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"memory": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-memory"
]
}
}
}VS Code
Use one-click installation buttons or manually configure in .vscode/mcp.json:
{
"servers": {
"memory": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-memory"
]
}
}
}Docker
{
"mcpServers": {
"memory": {
"command": "docker",
"args": ["run", "-i", "-v", "claude-memory:/app/dist", "--rm", "mcp/memory"]
}
}
}illustrator-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"
]
}
}
}