SFMCMATE Logo Dark

SFMCMate

Automate SFMC code execution and asset creation with GitHub + AI. One-time secure setup, zero credential sharing, instant productivity.

No need to share SFMC Package Credentials (Client ID & Secret)
Connect any private GitHub repo you choose
AI-powered SFMC code generation
0:00 / 0:00

How It Works

1. Connect GitHub

Install the GitHub app on your repo and create a CloudPage to pull the code.

2. Generate Code

Use AI chat to generate SFMC scripts (SSJS & AMPscript) and push them to GitHub.

3. Auto-Deploy

Code changes are auto-deployed to your SFMC CloudPage — just refresh the page.

See AI In Action

SFMCMate Chat

How can I help with your SFMC tasks today?

Create a DE with three fields: Id, Name and Surname


<script runat="server">
  Platform.Load("core", "1")

var api = new Script.Util.WSProxy()

try {
    var fields = [
      {
        "Name": "Id",
        "FieldType": "Number",
        "IsPrimaryKey": true,
        "IsRequired": true
      },
      {
        "Name": "Name",
        "FieldType": "Text",
        "MaxLength": 100
      },
      {
        "Name": "Surname",
        "FieldType": "Text",
        "MaxLength": 100
      }
    ];

    // Code continues...
</script>
                      
;

Frequently Asked Questions