# Survey monkey (verified)

SurveyMonkey is an online survey development platform that enables users to create, distribute, and analyze surveys for various purposes.

## Quick Start

```bash
# Connect this server (installs CLI if needed)
npx -y @smithery/cli@latest mcp add survey_monkey

# Browse available tools
npx -y @smithery/cli@latest tool list survey_monkey

# Get full schema for a tool
npx -y @smithery/cli@latest tool get survey_monkey SURVEY_MONKEY_CREATE_SURVEY

# Call a tool
npx -y @smithery/cli@latest tool call survey_monkey SURVEY_MONKEY_CREATE_SURVEY '{}'
```

## Direct MCP Connection

Endpoint: `https://survey_monkey.run.tools`

## Tools (8)

- `SURVEY_MONKEY_CREATE_SURVEY` — Tool to create a new survey. Use when you have a survey title and need an ID for follow-up operations. Example: "Create…
- `SURVEY_MONKEY_DELETE_SURVEY` — Tool to delete a specific survey. Use when the survey ID is confirmed correct. Deletion is irreversible. Example prompt…
- `SURVEY_MONKEY_GET_COLLECTORS` — Tool to retrieve a list of collectors for a specific survey. Use when you need collector URLs, counts, and statuses.
- `SURVEY_MONKEY_GET_CONTACTS` — Tool to retrieve a list of contacts. Use after authenticating with SurveyMonkey. Call this to fetch all contacts associ…
- `SURVEY_MONKEY_GET_GROUPS` — Tool to retrieve a list of groups. Use after authentication when you need to enumerate or paginate through all groups i…
- `SURVEY_MONKEY_GET_RESPONSES` — Tool to retrieve a list of responses for a specific survey. Use when you need to browse or filter responses after confi…
- `SURVEY_MONKEY_GET_SURVEY_DETAILS` — Tool to retrieve metadata and counts for a specific survey. Use after confirming the survey ID.
- `SURVEY_MONKEY_GET_SURVEYS` — Tool to retrieve a list of surveys. Use when you need to enumerate or paginate through all surveys.

```bash
# Get full input/output schema for a tool
npx -y @smithery/cli@latest tool get survey_monkey <tool-name>
```
