Skip to content
VS Code

aep for VS Code

com.focusgts/aep

Full-CRUD server for AEP, Journey Optimizer and CJA. 61 tools from one OAuth credential.

client:VS Code transport:stdio runtime:npm

Install aep in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "aep-client-id",
      "description": "AEP_CLIENT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "aep-client-secret",
      "description": "AEP_CLIENT_SECRET",
      "password": true
    },
    {
      "type": "promptString",
      "id": "aep-org-id",
      "description": "AEP_ORG_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "aep-sandbox-name",
      "description": "AEP_SANDBOX_NAME",
      "password": true
    },
    {
      "type": "promptString",
      "id": "aep-mode",
      "description": "AEP_MODE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "log-level",
      "description": "LOG_LEVEL",
      "password": true
    }
  ],
  "servers": {
    "aep": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@focusgts/aep-mcp-server"
      ],
      "env": {
        "AEP_CLIENT_ID": "${input:aep-client-id}",
        "AEP_CLIENT_SECRET": "${input:aep-client-secret}",
        "AEP_ORG_ID": "${input:aep-org-id}",
        "AEP_SANDBOX_NAME": "${input:aep-sandbox-name}",
        "AEP_MODE": "${input:aep-mode}",
        "LOG_LEVEL": "${input:log-level}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

aep in other clients