Full-CRUD Adobe Experience Platform server: 46 tools for schemas, ingestion, profiles, audiences.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag β we're steadily working through the catalog.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
61 tools across 14 categories. Full read AND write. Self-hosted, Apache-2.0, no invitation required. Experience Platform, Journey Optimizer and Customer Journey Analytics β from one OAuth credential.
Ingest a batch β compose a schema β activate an audience β honour an erasure. Every mutation gated by a fail-closed write guard that asks Adobe what kind of sandbox it's in.
Then just ask your agent:
"Create a schema with the Demographic Details field group, then a dataset on it." "Ingest this NDJSON file and tell me when the batch lands." "Build an audience of customers who bought twice this quarter and activate it." "Delete every record for this email address β dry run first."
Writes are off until you ask for them, and safe mode only unlocks sandboxes Adobe classifies as development.
Adobe's first-party gateway can tell you what's in your Experience Platform tenant. It cannot create a dataset, land a batch, activate an audience, or submit an erasure. This does β and does it behind a guard that fails closed.
The agent calls tools; the server talks to live Adobe APIs over OAuth Server-to-Server. The write guard sits in the HTTP client, not in each tool, so all 61 inherit it and none can forget it. Blocked calls never reach Adobe.
Three postures. Reads are never restricted in any mode.
AEP_MODE | Writes permitted | Use it when |
|---|---|---|
read-only | Never, in any sandbox | Handing the server to someone to explore an environment you don't want touched |
safe (default) | Only where Adobe classifies the sandbox development | Evaluating, or letting an agent work without risking production |
production | Anywhere, including production | You run your own change control and don't want the server second-guessing you |
How
safedecides β and why it's not the sandbox name. A production sandbox can be called anything, and a sandbox calledprodmight not be production. Only Adobe'stypefield from the Sandbox Management API decides.It fails closed. If the type can't be determined β the credential can't read sandbox metadata, the API errors, startup hasn't finished β writes are blocked. A credential must not earn write access by being less capable. An unrecognised
AEP_MODEfalls back tosafe, so a typo can never grant production writes.A sandbox literally named
prodis refused unconditionally, before mode resolution β soAEP_MODE=productiondoes not lift it. Override withAEP_I_UNDERSTAND_THIS_WRITES_TO_PROD=trueonly if that really is your sandbox's name. The inference is deliberately asymmetric: trusting a name to allow a write is unsafe, trusting one to deny a write is safe, because the worst case is a refusal you can override on purpose.Mutations are off entirely unless
AEP_ALLOW_MUTATIONS=true. That is separate fromAEP_MODEon purpose: choosing a write mode should not also mean "yes, you may change my data".
Startup always states the active posture:
Writes are not uniformly gated β uniform gating makes an agent useless. Gates sit where an action is irreversible and wide-reaching, and every one is checked before any network call:
| Tool | Gate |
|---|---|
aep_create_record_delete | dryRun defaults true. Real submission needs confirm: "DELETE RECORDS <datasetId> <identityDigest>" β bound to the dataset and a SHA-256 digest of the exact identity set, so a confirmation can't be reused for a different deletion. ALL and multi-dataset targets are refused. |
aep_delete_segment | confirm: "DELETE SEGMENT <segmentId>" β segments were create-only until 0.9.1, so every one an agent made was permanent |
aep_delete_dataset | confirm: "DELETE DATASET <id>", escalating to "DELETE PROFILE-ENABLED DATASET <id>" when the dataset feeds Profile |
aep_complete_batch | confirm: "COMPLETE BATCH <batchId>" β the point of no return for ingestion |
aep_revert_batch | confirm: "REVERT BATCH <batchId>" |
aep_create_dataset_expiration | confirm: "CREATE DATASET EXPIRATION <datasetId>" β unless dryRun: true |
aep_update_dataset_expiration | confirm: "UPDATE DATASET EXPIRATION <ttlId>" |
aep_cancel_dataset_expiration | confirm: "CANCEL DATASET EXPIRATION <ttlId>" |
aep_delete_profile | confirm: "I understand this is irreversible" (deprecated β prefer Data Hygiene) |
Confirmations name their target. A phrase carrying the dataset id β and for record delete, a hash of the identities too β cannot be copied from one call to another. A generic "I understand this is irreversible" approves any deletion once you've typed it once.
Identity values never leave the process.
aep_create_record_deletereturns a count, the namespace names, and a digest β never the email addresses or device IDs you passed it. A record-delete request is by nature a list of real people; a tool that echoes them copies them into every transcript and log sink it touches.Batch creation and file upload are ungated on purpose: those writes are additive and recoverable. An unwanted batch can be left uncompleted, and data that did land can be removed with the Data Hygiene tools.
Every tool ships MCP annotations β readOnlyHint, destructiveHint, idempotentHint, openWorldHint β derived from the same metadata that builds its description, so the two cannot drift.
| Count | |
|---|---|
readOnlyHint: true | 39 |
destructiveHint: true | 8 |
| Un-annotated | 0 |
These are hints for the client, not enforcement β the guards above enforce. Their value is that a client like Claude Desktop uses destructiveHint to decide when to interrupt and ask a human. Without them aep_delete_profile looks identical to aep_list_schemas. A test asserts the destructive list exactly, so a ninth is a deliberate act rather than an oversight.
All prefixed aep_, verb_noun naming. π changes state Β· π₯ destructive.
|
Schemas (4)
Datasets (4)
|
Ingestion (7)
|
Sources (2)
Query Service (3)
|
|
Identities (2)
|
Profiles (4)
|
Segments (5)
Destinations (3)
|
Factual signals from GitHub, npm, and our automated checks β not a rating.
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/aep)<a href="https://allmcps.com/mcp/aep"><img src="https://allmcps.com/api/badge/aep?style=directory" alt="Aep on AllMCPs" /></a>