surveys
SurveyMonkey MCP, CLI, and Lua Integration for AI Agents
SurveyMonkey integration docs for AI agents: MCP gateway setup, SurveyMonkey CLI commands, Lua API reference, credentials, and function schemas.
8 functions 6 read 2 write Manual OAuth token auth
SurveyMonkey for agents
Credentials can be configured manually in web or CLI hosts.
Use this integration from Lua code mode, the headless integrations CLI, or the KosmoKrator MCP gateway. The same package metadata powers all three surfaces.
Machine-Readable Metadata
- integration_slug
surveymonkey- route_slug
surveymonkey- package
surveymonkey- auth_strategy
oauth2_manual_tokenManual OAuth token- cli_setup_supported
true- cli_runtime_supported
true- mcp_gateway_supported
true- lua_supported
true- supports_multi_account
true
Quick Links
Lua APIAgent-facing namespace and function reference. SurveyMonkey CLIHeadless setup and direct function calls. SurveyMonkey MCPMCP gateway setup for external clients. Submit feedbackReport missing tools, auth problems, wrong docs, or runtime issues. ContributeAdd tools or improve metadata in the integrations repo.
SurveyMonkey MCP Client Matrix
Use these pages when a specific agent client or framework needs copy-pasteable MCP setup for SurveyMonkey.
Claude Code SurveyMonkey MCP setup for Claude Code. Cursor SurveyMonkey MCP setup for Cursor. Codex SurveyMonkey MCP setup for Codex. OpenAI Agents SurveyMonkey MCP setup for OpenAI Agents SDK. Claude Agent SDK SurveyMonkey MCP setup for Claude Agent SDK. Vercel AI SDK SurveyMonkey MCP setup for Vercel AI SDK. LangChain SurveyMonkey MCP setup for LangChain. LangGraph SurveyMonkey MCP setup for LangGraph. CrewAI SurveyMonkey MCP setup for CrewAI. MCP clients SurveyMonkey MCP setup for Generic MCP Clients.
SurveyMonkey CLI Matrix
Use these pages for direct SurveyMonkey CLI workflows in scripts, CI, cron, and agent wrappers.
CI SurveyMonkey CLI for CI. Cron Jobs SurveyMonkey CLI for cron jobs. Shell Scripts SurveyMonkey CLI for shell scripts. Headless Automation SurveyMonkey CLI for headless automation. Coding Agents SurveyMonkey CLI for coding agents.
Function Catalog
| Function | Type | Parameters | Description |
|---|---|---|---|
surveymonkey.surveymonkey_list_surveys | Read read | 2 | List all surveys in your SurveyMonkey account. Returns survey IDs, titles, and creation dates. |
surveymonkey.surveymonkey_get_survey | Read read | 1 | Get details of a specific SurveyMonkey survey by ID, including title, language, and question count. |
surveymonkey.surveymonkey_create_survey | Write write | 1 | Create a new blank survey in SurveyMonkey with a given title. |
surveymonkey.surveymonkey_list_responses | Read read | 3 | List all bulk responses for a SurveyMonkey survey. Returns response IDs, timestamps, and answer data. |
surveymonkey.surveymonkey_get_response | Read read | 2 | Get a single response for a SurveyMonkey survey by response ID, including all answers and metadata. |
surveymonkey.surveymonkey_list_collectors | Read read | 1 | List all collectors for a SurveyMonkey survey. Collectors are distribution channels (e.g., weblink, email). |
surveymonkey.surveymonkey_create_collector | Write write | 3 | Create a collector for a SurveyMonkey survey to distribute it. Collector types include "weblink" (shareable URL) and "email" (email invitation). |
surveymonkey.surveymonkey_get_current_user | Read read | 0 | Get details of the currently authenticated SurveyMonkey user, including name, email, and plan info. |