{
  "info": {
    "name": "Delighted — mcp.ai",
    "description": "REST API for the Delighted MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/delighted",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "delighted_add_person_to_autopilot_email",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/person/to/autopilot/email",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "person",
            "to",
            "autopilot",
            "email"
          ]
        },
        "description": "Add a person to Autopilot email or update their properties. Autopilot automatically schedules and sends recurring email surveys at the frequency configured in your Delighted account settings. Use this",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"person_id\": \"\",\n  \"properties\": {},\n  \"person_name\": \"\",\n  \"person_email\": \"\",\n  \"person_phone_number\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "delighted_add_person_to_autopilot_sms",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/person/to/autopilot/sms",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "person",
            "to",
            "autopilot",
            "sms"
          ]
        },
        "description": "Tool to add a person to Autopilot or update their properties for SMS-based surveys. Use when you need to schedule automated survey delivery via SMS. Prerequisites: SMS Autopilot must be configured in ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"person_id\": \"\",\n  \"properties\": {},\n  \"person_name\": \"\",\n  \"person_email\": \"\",\n  \"person_phone_number\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "delighted_create_person",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/person",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "person"
          ]
        },
        "description": "Tool to create or update a person and schedule a survey email. Use when you need to add a new person to Delighted, update existing person details, or schedule a survey with custom properties for segme",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"send\": false,\n  \"delay\": 0,\n  \"email\": \"\",\n  \"channel\": \"\",\n  \"properties\": {},\n  \"email_update\": \"\",\n  \"last_sent_at\": 0,\n  \"phone_number\": \"\",\n  \"phone_number_update\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "delighted_delete_pending_survey_requests",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/pending/survey/requests",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "pending",
            "survey",
            "requests"
          ]
        },
        "description": "Tool to remove all pending (scheduled but not yet sent) survey requests for a person. Use when you need to cancel all future surveys for a specific email address.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"person_email\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "delighted_delete_person",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/person",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "person"
          ]
        },
        "description": "Tool to remove a person and all associated data from Delighted. Use when you need to permanently delete a person's information. Deletion includes surveys, responses, properties, Autopilot membership, ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"person_identifier\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "delighted_get_autopilot_email_configuration",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/autopilot/email/configuration",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "autopilot",
            "email",
            "configuration"
          ]
        },
        "description": "Tool to retrieve the current Autopilot configuration for email distribution. Returns configuration details including whether Autopilot is active, survey frequency, and timestamps.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "delighted_get_autopilot_sms_configuration",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/autopilot/sms/configuration",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "autopilot",
            "sms",
            "configuration"
          ]
        },
        "description": "Tool to retrieve the current Autopilot configuration for SMS distribution. Use when you need to check whether Autopilot is enabled, review survey frequency settings, or examine configuration timestamp",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "delighted_list_autopilot_sms_memberships",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/autopilot/sms/memberships",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "autopilot",
            "sms",
            "memberships"
          ]
        },
        "description": "Tool to retrieve all Autopilot memberships for SMS distribution platform. Use when you need to list people enrolled in Autopilot SMS or filter by specific person details.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"per_page\": 0,\n  \"person_id\": \"\",\n  \"person_email\": \"\",\n  \"person_phone_number\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "delighted_list_bounced_people",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/bounced/people",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "bounced",
            "people"
          ]
        },
        "description": "Tool to retrieve all bounced people for your account, ordered by bounce time (oldest first). Use when you need to identify email addresses that have bounced. Supports pagination via per_page and page ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"since\": 0,\n  \"until\": 0,\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "delighted_list_people",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/people",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "people"
          ]
        },
        "description": "Tool to retrieve all people for your account in creation order. Use when you need to list contacts, filter by email or phone number, or paginate through your people database. Supports cursor-based pag",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"email\": \"\",\n  \"since\": 0,\n  \"until\": 0,\n  \"per_page\": 0,\n  \"page_info\": \"\",\n  \"phone_number\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "delighted_list_survey_responses",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/survey/responses",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "survey",
            "responses"
          ]
        },
        "description": "Tool to retrieve all survey responses for your account with pagination support and optional filtering. Use when you need to access survey feedback data, filter by date range, trend, person, or sort by",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"order\": \"\",\n  \"since\": 0,\n  \"trend\": \"\",\n  \"until\": 0,\n  \"expand\": \"\",\n  \"per_page\": 0,\n  \"person_id\": \"\",\n  \"person_email\": \"\",\n  \"updated_since\": 0,\n  \"updated_until\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "delighted_list_unsubscribed_people",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/unsubscribed/people",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "unsubscribed",
            "people"
          ]
        },
        "description": "Tool to retrieve all unsubscribed people for your account, ordered by unsubscribe time (oldest first). Use when you need to identify people who have unsubscribed. Supports pagination via per_page and ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"since\": 0,\n  \"until\": 0,\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "delighted_unsubscribe_person",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/unsubscribe/person",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "unsubscribe",
            "person"
          ]
        },
        "description": "Tool to add a person to your unsubscribe list, preventing them from receiving any future surveys via email. Use when you need to permanently unsubscribe someone from all email surveys. This is functio",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"person_email\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}