MCP Catalogs
Home

photoshop-mcp vs memory

Side-by-side comparison to help you pick between these two MCP servers.

photoshop-mcp
by alisaitteke
memory
by modelcontextprotocol
Stars★ 44★ 85,748
30d uses
Score4577
Official
Categories
MediaProductivityDeveloper Tools
Knowledge GraphAI / LLM ToolsProductivity
LanguageTypeScriptTypeScript
Last committhis monththis month

photoshop-mcp · Summary

Photoshop MCP server enables AI assistants to control Adobe Photoshop with 50+ tools for design automation.

memory · Summary

An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.

photoshop-mcp · Use cases

  • Automating repetitive design tasks and batch processing of images
  • Creating complex designs through natural language prompts
  • Enhancing photos with AI-powered editing workflows
  • Integrating Photoshop into AI-powered design systems

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

photoshop-mcp · Install

Using NPX (Recommended)

No installation required! Just configure your MCP client:

npx @alisaitteke/photoshop-mcp

From Source

git clone https://github.com/alisaitteke/photoshop-mcp.git
cd photoshop-mcp
npm install
npm run build

Configuration for Claude Desktop

Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS or %APPDATA%\Claude\claude_desktop_config.json on Windows):

{
  "mcpServers": {
    "photoshop": {
      "command": "npx",
      "args": ["-y", "@alisaitteke/photoshop-mcp"],
      "env": {
        "LOG_LEVEL": "1"
      }
    }
  }
}

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"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.