{
  "info": {
    "name": "SurveyMonkey — mcp.ai",
    "description": "REST API for the SurveyMonkey 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/survey_monkey",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "survey_monkey_create_bulk_contacts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/bulk/contacts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "bulk",
            "contacts"
          ]
        },
        "description": "Creates multiple contacts in SurveyMonkey in a single API call. Use this action to efficiently add multiple contacts at once, optionally updating existing ones. Each contact requires first_name, last_",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"contacts\": \"\",\n  \"update_existing\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "survey_monkey_create_contact",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/contact",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "contact"
          ]
        },
        "description": "Creates a new contact in SurveyMonkey. Contacts can be added to contact lists and used for email invitations. Use this action when you need to add a new contact to your SurveyMonkey account for survey",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"email\": \"\",\n  \"last_name\": \"\",\n  \"first_name\": \"\",\n  \"custom_fields\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "survey_monkey_create_contact_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/contact/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "contact",
            "list"
          ]
        },
        "description": "Creates a new contact list in SurveyMonkey. Contact lists are used to organize contacts for sending survey invitations via email or SMS collectors. Use this action when you need to create a contact li",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "survey_monkey_create_survey",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/survey",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "survey"
          ]
        },
        "description": "Creates a new empty survey in SurveyMonkey with one empty page and no questions. Returns the survey ID and internal URLs for editing, previewing, and analyzing results — shareable collector URLs are n",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"title\": \"\",\n  \"footer\": false,\n  \"language\": \"\",\n  \"nickname\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "survey_monkey_create_survey_folder",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/survey/folder",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "survey",
            "folder"
          ]
        },
        "description": "Creates a new survey folder in SurveyMonkey to organize surveys. Use when you need to create a folder for grouping related surveys.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"title\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "survey_monkey_delete_survey",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/survey",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "survey"
          ]
        },
        "description": "Tool to delete a specific survey. Use when the survey ID is confirmed correct. Deletion is irreversible. Example prompt: \"Delete survey '123456789'.\"",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"survey_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "survey_monkey_get_bulk_contacts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/bulk/contacts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "bulk",
            "contacts"
          ]
        },
        "description": "Tool to retrieve contacts in bulk from SurveyMonkey. Use when you need to fetch multiple contacts efficiently with pagination support.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "survey_monkey_get_collectors",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/collectors",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "collectors"
          ]
        },
        "description": "Tool to retrieve a list of collectors for a specific survey. Use when you need collector URLs, counts, and statuses. Survey creation does not return shareable links; use this tool to obtain collector ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"page\": 0,\n  \"include\": \"\",\n  \"sort_by\": \"\",\n  \"end_date\": \"\",\n  \"per_page\": 0,\n  \"survey_id\": \"\",\n  \"sort_order\": \"\",\n  \"start_date\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "survey_monkey_get_contacts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/contacts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "contacts"
          ]
        },
        "description": "Retrieves a list of contacts from SurveyMonkey. Use this tool to fetch contacts that can be used for sending survey invitations. Contacts can be filtered by status (active, optout, bounced), searched ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"search\": \"\",\n  \"status\": \"\",\n  \"sort_by\": \"\",\n  \"per_page\": 0,\n  \"search_by\": \"\",\n  \"sort_order\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "survey_monkey_get_current_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/current/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "current",
            "user"
          ]
        },
        "description": "Tool to retrieve the current authenticated user's account details including plan information. Use when you need to get information about the authenticated user's SurveyMonkey account.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "survey_monkey_get_groups",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/groups",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "groups"
          ]
        },
        "description": "Tool to retrieve a list of groups. Use after authentication when you need to enumerate or paginate through all groups in your SurveyMonkey account.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"include\": \"\",\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "survey_monkey_get_responses",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/responses",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "responses"
          ]
        },
        "description": "Tool to retrieve a paginated list of responses for a specific survey. Use when you need to browse or filter responses after confirming the survey ID. Iterate through all pages using `page` and `per_pa",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ip\": \"\",\n  \"page\": 0,\n  \"email\": \"\",\n  \"custom\": \"\",\n  \"status\": \"\",\n  \"sort_by\": \"\",\n  \"per_page\": 0,\n  \"last_name\": \"\",\n  \"survey_id\": \"\",\n  \"first_name\": \"\",\n  \"sort_order\": \"\",\n  \"end_created_at\": \"\",\n  \"total_time_max\": 0,\n  \"total_time_min\": 0,\n  \"end_modified_at\": \"\",\n  \"custom_variables\": \"\",\n  \"start_created_at\": \"\",\n  \"total_time_units\": \"\",\n  \"start_modified_at\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "survey_monkey_get_survey_details",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/survey/details",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "survey",
            "details"
          ]
        },
        "description": "Retrieves comprehensive details and metadata for a specific survey by its ID. Returns survey configuration including title, language, question/page counts, response count, URLs for preview/edit/analyz",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"survey_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "survey_monkey_get_survey_details2",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/survey/details2",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "survey",
            "details2"
          ]
        },
        "description": "Retrieves expanded survey details including all pages, questions, and answer options. Use when you need the complete survey structure with question IDs and answer option IDs for mapping responses.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"survey_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "survey_monkey_get_survey_responses_bulk",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/survey/responses/bulk",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "survey",
            "responses",
            "bulk"
          ]
        },
        "description": "Tool to retrieve bulk survey responses with full question answers and response data. Use when you need to export or analyze detailed response data for a survey.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"page\": 0,\n  \"status\": \"\",\n  \"per_page\": 0,\n  \"end_created_at\": \"\",\n  \"start_created_at\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "survey_monkey_get_survey_trends",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/survey/trends",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "survey",
            "trends"
          ]
        },
        "description": "Tool to retrieve trend data for a survey showing answer counts for particular time periods. Use when you need to analyze response trends over time for survey questions. Not available for file_upload, ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"trend_by\": \"\",\n  \"survey_id\": \"\",\n  \"end_created_at\": \"\",\n  \"end_modified_at\": \"\",\n  \"start_created_at\": \"\",\n  \"start_modified_at\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "survey_monkey_get_surveys",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/surveys",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "surveys"
          ]
        },
        "description": "Tool to retrieve a paginated list of surveys. Use when you need to enumerate or paginate through all surveys. Results are capped at 100 per page (`per_page` max=100); iterate over all pages using `pag",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"title\": \"\",\n  \"include\": \"\",\n  \"sort_by\": \"\",\n  \"per_page\": 0,\n  \"folder_id\": \"\",\n  \"sort_order\": \"\",\n  \"end_modified_at\": \"\",\n  \"start_modified_at\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "survey_monkey_list_available_languages",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/available/languages",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "available",
            "languages"
          ]
        },
        "description": "Tool to retrieve all available languages for creating multilingual surveys. Use when you need to get language codes and names for survey creation or translation.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "survey_monkey_list_benchmark_bundles",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/benchmark/bundles",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "benchmark",
            "bundles"
          ]
        },
        "description": "Tool to retrieve a list of benchmark bundles. Use when you need to enumerate available benchmark bundles for benchmarking survey results.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"country\": \"\",\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "survey_monkey_list_contact_fields",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/contact/fields",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "contact",
            "fields"
          ]
        },
        "description": "Tool to retrieve a list of contact fields from SurveyMonkey. Use when you need to enumerate available contact fields that can be used for contact management and data collection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "survey_monkey_list_contact_lists",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/contact/lists",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "contact",
            "lists"
          ]
        },
        "description": "Tool to retrieve a list of contact lists from SurveyMonkey. Use this when you need to enumerate all contact lists in your account or find a specific list by name. Contact lists are collections of cont",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "survey_monkey_list_webhooks",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/webhooks",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "webhooks"
          ]
        },
        "description": "Tool to retrieve a list of webhooks from SurveyMonkey. Use when you need to view all configured webhooks or find a specific webhook by name.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}