{
  "info": {
    "name": "Mopinion — mcp.ai",
    "description": "REST API for the Mopinion 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/mopinion",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "mopinion_get_account",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/account",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "account"
          ]
        },
        "description": "Tool to retrieve the current authenticated account information. Use to verify authentication and get account details.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "mopinion_get_dataset_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/dataset/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "dataset",
            "by",
            "id"
          ]
        },
        "description": "Retrieve complete metadata for a specific Mopinion dataset (feedback form) by its ID. Returns dataset properties including name, associated report ID, data source type, and description. Use this actio",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"dataset_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "mopinion_get_dataset_feedback",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/dataset/feedback",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "dataset",
            "feedback"
          ]
        },
        "description": "Retrieve feedback items (survey responses) for a specific dataset/form with optional pagination and filtering. Use this action to fetch multiple feedback entries from a dataset. Each feedback item con",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"limit\": 0,\n  \"filters\": {},\n  \"dataset_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "mopinion_get_dataset_feedback_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/dataset/feedback/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "dataset",
            "feedback",
            "by",
            "id"
          ]
        },
        "description": "Retrieves a single feedback item by its unique identifier from a specific dataset. Use this tool when you need detailed information about a specific feedback item. First obtain the dataset_id using Li",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"dataset_id\": 0,\n  \"feedback_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "mopinion_get_dataset_fields",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/dataset/fields",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "dataset",
            "fields"
          ]
        },
        "description": "Tool to retrieve field definitions for a dataset. Use when you need the schema of a dataset's fields.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"dataset_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "mopinion_get_deployment_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/deployment/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "deployment",
            "by",
            "id"
          ]
        },
        "description": "Retrieves detailed configuration for a specific feedback form deployment by its ID. Returns deployment rules, trigger conditions, scheduling settings, target URLs, and active status. Use this to under",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"deployment_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "mopinion_get_deployments",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/deployments",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "deployments"
          ]
        },
        "description": "Tool to list all deployments for the authenticated Mopinion account. Use after setting up authentication.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"accept\": \"\",\n  \"version\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "mopinion_get_report_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/report/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "report",
            "by",
            "id"
          ]
        },
        "description": "Retrieves detailed information about a specific Mopinion report by its ID. Returns comprehensive report details including name, description, language, creation date, and all associated datasets with t",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"report_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "mopinion_get_report_feedback",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/report/feedback",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "report",
            "feedback"
          ]
        },
        "description": "Tool to retrieve feedback items for a report. Use when you need paginated and filtered feedback entries for analysis.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"limit\": 0,\n  \"filters\": {},\n  \"report_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "mopinion_get_report_fields",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/report/fields",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "report",
            "fields"
          ]
        },
        "description": "Tool to retrieve field definitions for a specific report. Use when you need the schema of a report's feedback fields before constructing or analyzing forms.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"report_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "mopinion_get_root",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/root",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "root"
          ]
        },
        "description": "Check Mopinion API availability and get version information. Pings the API health check endpoint (/ping) and returns status code, 'pong' response, and current API version. Use this to verify the API i",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"extra_path\": \"\",\n  \"custom_base_url\": \"\",\n  \"include_auth_header\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}