Experience Workspace MCP

The Experience Workspace MCP connects AI assistants like Claude or ChatGPT to your Experience Workspace projects using the Model Context Protocol (MCP), an open standard for giving AI tools access to external services. Once connected, AI assistants that observe the MCP standard can browse your content, read files, create new pages, move things around, and check version history without you ever leaving the chat window.

Instead of copy-pasting content back and forth, you can say things like "draft a new page at /products/overview and save it to Experience Workspace" or "show me what changed in this document over the past week" and your AI assistant will just do it.

What can it do?

Experience Workspace MCP exposes 10 tools covering the full content lifecycle:

Tool What it does
da_list_sources Browse directories and list files in a repository
da_get_source Read the full content of any file
da_create_source Create a new file with provided content
da_update_source Update an existing file in place
da_delete_source Delete a file
da_copy_content Copy content from one location to another
da_move_content Move or rename content
da_get_versions View version history for a file
da_lookup_media Look up media asset references
da_lookup_fragment Look up content fragment references

Setup

There are four ways to connect Experience Workspace MCP to an AI assistant, depending on how you work.

Option 1: Claude.ai (web)

This is the easiest way to get started. Experience Workspace MCP can be added to Claude (and also others like ChatGPT) as a custom connector. Navigate to Settings → Connectors, click the Add and then Add custom connector.

In the dialog enter the name DA MCP and use the https://mcp.adobeaemcloud.com/adobe/mcp/da URL. Leave the optional fields empty , the MCP will handle the Adobe IMS login.

Option 2: Claude Desktop

If you use the Claude Desktop app, add the following to your config file. On macOS, the file is at ~/Library/Application Support/Claude/claude_desktop_config.json:

claude_desktop_config.json (json)

{
  "mcpServers": {
    "da-live-admin": {
      "type": "streamable-http",
      "url": "https://mcp.adobeaemcloud.com/adobe/mcp/da"
    }
  }
}

The mcp.adobeaemcloud.com endpoint handles Adobe IMS authentication automatically. No token configuration required.

Option 3: VS Code or Cursor

Add the following to .vscode/mcp.json in your project, or to your global Cursor settings:

.vscode/mcp.json (json)

{
  "mcpServers": {
    "da-prod-mcp": {
      "url": "https://mcp.adobeaemcloud.com/adobe/mcp/da"
    }
  }
}

Option 4: Server to server

  1. Get an Edge Delivery Services card at: https://developer.adobe.com/console/servicesandapis
  2. Add the email to your Experience Workspace config sheet: http://da.live/config#/{YOUR_DA_ORG}/
  3. Add the relevant config where you need it (see code example below)
  4. Make the appropriate server-to-server call based on your Edge Delivery Services card and pass it as noted below.

mcp-config-example (json)

{
  "mcpServers": {
    "da-live-admin": {
      "type": "streamable-http",
      "url": "https://da-mcp.adobeaem.workers.dev/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_DA_USER_IMS_TOKEN"
      }
    }
  }
}

Tips for working with AI and Experience Workspace

Set up a Claude Project

Claude Projects let you save persistent instructions that apply to every conversation. Instead of re-explaining your domain mappings, path conventions, and editing preferences each time, you write them once in the Project instructions and Claude picks them up automatically — making Projects a great home for your Experience Workspace workflow setup.

To get started, create a new Project in Claude.ai, open its Project instructions, and paste in something like the following. Adjust the domains and defaults to match your own repositories:

project-instructions (markdown)

## Domains
- https://docs.da.live → https://main--docket--da-pilot.aem.page
- https://authorkit.dev → https://main--author-kit--aemsites.aem.page

## Instructions
- When given a production URL, find it in the domains above and use the corresponding AEM URL to resolve the org, site, and path.
- Give a high level overview if editing content not in drafts, otherwise, just update the content.
- Always supply a DA edit link after editing content.
- If I don't give you a path, make something in /drafts/cmillar
- If creating content in a drafts folder, always preview it immediately

With this in place, every conversation in the project inherits the same context and there is no need to repeat yourself. Claude will consistently follow your conventions across sessions.