{
  "info": {
    "name": "Satismeter — mcp.ai",
    "description": "REST API for the Satismeter 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/satismeter",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "satismeter_embed_survey",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/embed/survey",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "embed",
            "survey"
          ]
        },
        "description": "Tool to generate a JavaScript snippet to embed a SatisMeter survey. Use after configuring your project and obtaining your write key.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"traits\": {},\n  \"userId\": \"\",\n  \"settings\": {},\n  \"writeKey\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "satismeter_get_unsubscribed_emails",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/unsubscribed/emails",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "unsubscribed",
            "emails"
          ]
        },
        "description": "Tool to retrieve list of unsubscribed emails for a project. Use when you need to fetch emails that have opted out of surveys.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "satismeter_list_surveys",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/surveys",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "surveys"
          ]
        },
        "description": "Tool to list surveys (campaigns) in a project. Use when you have a valid project ID and need to retrieve its surveys.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "satismeter_list_users",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/users",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "users"
          ]
        },
        "description": "Tool to list users in a project. Use when you have a valid project ID and need to retrieve its users. Optionally filter by a specific user ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project\": \"\",\n  \"user_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "satismeter_update_unsubscribed_emails",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/unsubscribed/emails",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "unsubscribed",
            "emails"
          ]
        },
        "description": "Tool to update the list of unsubscribed emails for a project. Use when you need to bulk unsubscribe user emails from surveys.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"emails\": \"\",\n  \"project_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}