plugins marketplace
← All plugins

run-workflow

v1.0.0

Discover, compose, run, publish, and save Adobe Firefly workflows through the run-workflow MCP server, including predefined featured workflows for common marketing and production use cases.

Claude Code2 skills1 MCP serverstreamable-http

by AdobeApache-2.0162updated 1 day ago

Source

git clone https://github.com/adobe/skills

Clone the source, then follow the repository's marketplace instructions for your runtime. The plugin root is plugins/creative-cloud/run-workflow/ inside the repository.

Layout

plugins/creative-cloud/run-workflow/
├── .claude-plugin/plugin.json
├── skills/run-featured-workflow/SKILL.md
├── skills/run-workflow/SKILL.md
└── .mcp.json

Skills2

run-featured-workflowskills/run-featured-workflow/SKILL.md

Run predefined featured workflows via run-workflow MCP. TRIGGER when user names a featured workflow (retargeting, banners at scale, localization, packaging, banner advertising, etc.) or asks to run a known marketing/production workflow. Requires run-workflow MCP. ALWAYS call get_featured_workflow before compose_workflow. DO NOT TRIGGER for custom one-off workflows with no named template — use run-workflow skill.

run-workflowskills/run-workflow/SKILL.md

Use the run-workflow MCP to discover, compose, execute, publish, and save Adobe Firefly workflows. TRIGGER when: user asks what actions are available, what the MCP can do, how to process images/video/3D via workflow, wants to build/run/save/publish a workflow, OR pastes any workflow/batch/execution ID. BARE ID (UUID/workflowId/batchId) = INSPECT ONLY — call inspect_run, NEVER run_workflow_submit. ALWAYS call list_actions first for capability/discovery questions. DO NOT TRIGGER for direct Firefly API calls without MCP (use firefly-api-specs).

MCP servers1

run-workflowstreamable-http
url
https://run-workflow.adobe.io/mcp

Manifests1

plugins/creative-cloud/run-workflow/.claude-plugin/plugin.json
{
  "name": "run-workflow",
  "description": "Discover, compose, run, publish, and save Adobe Firefly workflows through the run-workflow MCP server, including predefined featured workflows for common marketing and production use cases.",
  "version": "1.0.0",
  "author": {
    "name": "Adobe"
  },
  "repository": "https://github.com/adobe/skills",
  "license": "Apache-2.0",
  "keywords": [
    "adobe",
    "firefly",
    "run-workflow",
    "mcp",
    "creative-cloud"
  ],
  "skills": "./skills"
}