AEP MCP Server

AEP MCP Server

The first full-featured MCP server for Adobe Experience Platform: 29 tools across schemas, datasets, profiles, segments, query service, and GDPR/CCPA privacy operations. Extends Adobe's read-only beta with production-grade write operations.

Category
Visit Server

README

@focusgts/aep-mcp-server

Tests TypeScript License MCP

The first full-featured Model Context Protocol server for Adobe Experience Platform. 29 tools across 9 categories with full read AND write operations — built to extend Adobe's read-only beta MCPs with production-grade capabilities.


Why this exists

Adobe ships an official MCP server for Adobe Journey Optimizer, but it's a read-only beta with three tools, broken pagination, and works only against Claude's hosted remote-MCP transport. Nobody — not Adobe, not the community — has shipped a full-featured MCP for Adobe Experience Platform itself.

That's the gap this fills. AEP is the foundation layer that AJO, Customer Journey Analytics, and Real-Time CDP all sit on top of. Own the AEP MCP layer and you own schemas, datasets, profiles, identities, segments, sources, destinations, and SQL queries across the entire Adobe Experience Cloud — not just one product's read-only slice.

This server is built to production standards: OAuth Server-to-Server auth with a deduped token cache, structured pino logging with PII redaction, exponential-backoff retries, automatic 401 re-auth, working pagination, structured AEP_{status} error codes, and a graceful-shutdown lifecycle. It runs as a local stdio process that any MCP-compliant client can drive.


Comparison vs Adobe's own MCPs

Feature Adobe AJO MCP (beta) @focusgts/aep-mcp-server
Operations Read-only Full CRUD (read + write)
Tool count 3 29
Pagination Broken (first 50 only) Working (offset/limit + hasMore)
Client compatibility Claude only Claude, Cursor, ChatGPT, Copilot, any MCP client
Transport Hosted remote stdio (local)
Sandbox support Yes Yes (auto-scoped)
Error responses Sometimes 502 silent Structured AEP_{status} codes

Tool inventory

29 tools across 9 categories. All prefixed aep_ with verb_noun naming.

Category Tool Description
Schemas (3) aep_list_schemas List XDM schemas in the Schema Registry
aep_get_schema Fetch a single XDM schema by ID
aep_create_schema Create a new XDM schema (write)
Datasets (3) aep_list_datasets List datasets in the catalog
aep_get_dataset Fetch a single dataset by ID
aep_create_dataset Create a new dataset bound to a schema (write)
Identities (2) aep_list_identity_namespaces List identity namespaces
aep_get_identity_graph Fetch the identity graph for a given identity
Profiles (4) aep_get_profile Fetch a Real-Time CDP profile by entity ID
aep_preview_profile Preview a profile fragment without materializing
aep_get_profile_by_identity Look up a profile by namespace + identity value
aep_delete_profile Delete a profile (write, confirmation gate)
Segments (4) aep_list_segments List segment definitions
aep_get_segment Fetch a single segment definition by ID
aep_create_segment Create a PQL segment definition (write)
aep_estimate_segment_size Estimate segment audience size
Sources (2) aep_list_sources List the source connector catalog
aep_list_dataflows List active source dataflows
Destinations (2) aep_list_destinations List the destination catalog
aep_activate_segment Activate a segment to a destination (write)
Query Service (3) aep_run_query Run a SQL query against the Data Lake (write)
aep_get_query_status Check the status of a running query
aep_list_queries List recent queries
Privacy Service (6) aep_create_privacy_job Submit a GDPR/CCPA/HIPAA/etc privacy job (delete or access request)
aep_get_privacy_job Fetch a privacy job by ID
aep_list_privacy_jobs List privacy jobs filtered by regulation
aep_cancel_privacy_job Cancel a pending privacy job
aep_get_privacy_job_results Get results / download URL for a privacy job
aep_list_privacy_namespaces List identity namespaces supported by Privacy Service

Architecture

v0.2.0 adds a Privacy Service category (6 tools) for GDPR/CCPA workflows.

┌─────────────────────────────────────────────────────────┐
│                  MCP Client (any)                        │
│      Claude · Cursor · ChatGPT · Copilot                │
└──────────────────────┬──────────────────────────────────┘
                       │ stdio (JSON-RPC 2.0)
┌──────────────────────┴──────────────────────────────────┐
│              @focusgts/aep-mcp-server                    │
│  ┌──────────┐  ┌──────────┐  ┌──────────┐  ┌────────┐ │
│  │ Schemas  │  │ Datasets │  │Identities│  │Profiles│ │
│  └──────────┘  └──────────┘  └──────────┘  └────────┘ │
│  ┌──────────┐  ┌──────────┐  ┌──────────┐  ┌────────┐ │
│  │ Segments │  │ Sources  │  │  Dests   │  │ Query  │ │
│  └──────────┘  └──────────┘  └──────────┘  └────────┘ │
├─────────────────────────────────────────────────────────┤
│  Auth: OAuth 2.0 Server-to-Server (Adobe IMS)          │
│  Token cache · retry · 401 re-auth · pino redact       │
└──────────────────────┬──────────────────────────────────┘
                       │ HTTPS + Bearer + x-sandbox-name
┌──────────────────────┴──────────────────────────────────┐
│        Adobe Experience Platform APIs (live)             │
│  /data/foundation/schemaregistry · /data/core/ups/...   │
└─────────────────────────────────────────────────────────┘

Quickstart

Option A: From npm (once published)

npm install -g @focusgts/aep-mcp-server

Option B: From source (works today)

git clone https://github.com/focusgts/aep-mcp-server.git
cd aep-mcp-server
npm install
npm run build

Then for both options:

# Get Adobe credentials at developer.adobe.com/console
# Create project → add "Experience Platform API" → OAuth Server-to-Server

cat > .env <<EOF
AEP_CLIENT_ID=your-client-id
AEP_CLIENT_SECRET=your-client-secret
AEP_ORG_ID=your-ims-org-id@AdobeOrg
AEP_SANDBOX_NAME=prod
EOF

# Run the server (Option A)
aep-mcp

# Or run from source (Option B)
npm run dev

The server speaks MCP over stdio. Any MCP-compliant client can drive it.


MCP Client Configuration

Claude Desktop

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

{
  "mcpServers": {
    "aep": {
      "command": "npx",
      "args": ["-y", "@focusgts/aep-mcp-server"],
      "env": {
        "AEP_CLIENT_ID": "...",
        "AEP_CLIENT_SECRET": "...",
        "AEP_ORG_ID": "...@AdobeOrg",
        "AEP_SANDBOX_NAME": "prod"
      }
    }
  }
}

Cursor / Copilot / ChatGPT Desktop

Any MCP-compliant client works the same way — point its MCP config at npx -y @focusgts/aep-mcp-server with the four env vars above.


Environment Variables

Variable Required Description
AEP_CLIENT_ID Yes Adobe I/O client ID
AEP_CLIENT_SECRET Yes Adobe I/O client secret
AEP_ORG_ID Yes IMS org ID (format: xxx@AdobeOrg)
AEP_SANDBOX_NAME No AEP sandbox name (default: prod)
LOG_LEVEL No Pino log level (default: info)

Entitlement matrix

Not every Adobe org has every AEP product entitlement. Map tools to what your IMS org actually licenses:

Tool category Required Adobe entitlement
Schemas AEP (base)
Datasets AEP (base)
Identities AEP (base) + Identity Service
Profiles Real-Time CDP
Segments Real-Time CDP
Sources AEP (base) — connector availability varies by SKU
Destinations Real-Time CDP (activation)
Query Service AEP Query Service add-on
Privacy Service Adobe Privacy Service (sold separately from RTCDP/Query Service)

If a tool returns AEP_403 it usually means the entitlement is missing rather than a credential problem.


Development

npm install
npm run build        # tsc → dist/
npm run dev          # tsx src/server.ts (hot-reload)
npm test             # vitest (38 tests)
npm run typecheck    # tsc --noEmit
npm run clean        # rm -rf dist

The TypeScript config is strict mode end-to-end. All tool inputs are validated with Zod at the boundary. All logs go to stderr (pino destination 2) — stdout is reserved for the MCP JSON-RPC stream.


Live integration testing

npm run test:live runs the integration suite against a real Adobe IMS org and AEP sandbox. It exercises every tool against live endpoints with read-only verification where possible and explicit confirmation gates for writes/deletes.

Requires a .env with valid credentials and AEP_SANDBOX_NAME pointing at a non-production sandbox.


Contributing & License

This is a Focus GTS proprietary product. See LICENSE.

Bug reports and feature requests are welcome at dfox@focusgts.com. Pull requests are accepted by prior arrangement only — open an issue first.


About Focus GTS

Focus GTS is an Adobe Silver Solution Partner specializing in Adobe Experience Cloud talent and tooling. We build production-grade developer tools for AEP, AJO, CJA, and Real-Time CDP customers who need more than what ships in the box.

Learn more at https://focusgts.com.

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured