CuratedMCP
OpenAI Agents SDK
Free

How to Install Adobe MCP in OpenAI Agents SDK

Official Adobe integration — automate creative workflows across Photoshop, Acrobat, and Experience Cloud

What Adobe MCP does

The official Adobe MCP server gives AI agents access to Adobe creative and marketing workflows. It can generate creative assets, manage PDFs, and query Experience Cloud analytics. Features: - Create and edit images and documents in Photoshop - Generate and manage PDFs in Acrobat - Access Adobe Experience Cloud reports and campaigns - Manage Creative Cloud assets and libraries - Apply templates, text styles, and branding - Export finished assets with delivery URLs Adobe MCP helps marketing and design teams integrate AI-generated assets directly into their workflows.

adobe
creative
photoshop
acrobat
design

Installation steps

  1. 1Install: pip install openai-agents
  2. 2Copy the snippet below into your agent code
  3. 3Replace placeholder env values with your real keys
  4. 4Pass mcp_servers=[mcp_server] to your Agent()

Python snippet

Python snippetpython
from agents import Agent
from agents.mcp import MCPServerStdio

mcp_server = MCPServerStdio(
    command="npx",
    args=["-y", "@adobe/mcp"],
    env={
        "ADOBE_API_KEY": "...",
        "ADOBE_ORG_ID": "...",
    },
)

agent = Agent(
    name="My Agent",
    model="gpt-4o",
    mcp_servers=[mcp_server],
)
Full server details Open Config Editor

Install in other clients

For maintainers

If you maintain Adobe MCP, add this badge to your README to show it's verified on CuratedMCP:

CuratedMCP Verified
[![CuratedMCP Verified](https://curatedmcp.com/api/badge/adobe-mcp)](https://curatedmcp.com/marketplace/adobe-mcp)