Surveymonkey MCP Server — Hosted Security Integration
MCP Server language Hosted language PublicFull SurveyMonkey integration — create surveys, manage pages and questions, distribute via collectors, and analyze responses.
Use with AI AssistantsMCP
Connect Claude, Cursor, or any MCP-compatible client — then call tools directly
① Add This MCP Server
Paste into your AI client config — then all its tools are available instantly.
{
"mcpServers": {
"surveymonkey": {
"url": "https://mcp.aerostack.dev/s/aerostack/mcp-surveymonkey",
"headers": {
"Authorization": "Bearer YOUR_AEROSTACK_TOKEN"
}
}
}
}Replace YOUR_AEROSTACK_TOKEN with your API token from the dashboard.
② Call a Tool
Ask your AI assistant to call a specific tool, or send raw JSON-RPC:
Natural Language Prompt
“Use the _ping tool to verify surveymonkey credentials by calling a lightweight read endpoint. used internally by aerostack to validate credentials”
Using a Workspace?
Add this MCP to your Workspace — your team shares one token, secrets are stored securely, and every AI agent in the workspace can call it without per-user setup.
description Overview
mcp-surveymonkey — Surveymonkey MCP Server
Full SurveyMonkey integration — create surveys, manage pages and questions, distribute via collectors, and analyze responses.
Live endpoint: https://mcp.aerostack.dev/s/aerostack/mcp-surveymonkey
What You Can Do
This MCP server gives AI agents access to Surveymonkey via 12 tools. Connect it to any Aerostack workspace and your agents can interact with Surveymonkey directly.
Available Tools
| Tool | Description |
|---|---|
list_surveys |
List all surveys in the account with pagination. |
get_survey |
Get basic survey information by ID. |
create_survey |
Create a new survey. |
get_survey_details |
Get full survey details including pages and questions. |
list_pages |
List all pages in a survey. |
create_page |
Add a new page to a survey. |
list_questions |
List all questions on a survey page. |
create_question |
Add a question to a survey page. |
list_collectors |
List collectors (distribution links) for a survey. |
create_collector |
Create a new web link collector for a survey. |
list_responses |
List responses for a collector. |
get_response_details |
Get full details of a specific survey response. |
Configuration
| Variable | Required | Description |
|---|---|---|
SURVEYMONKEY_ACCESS_TOKEN |
Yes | Your SurveyMonkey OAuth access token — found in Developer Portal → My Apps → Access Token |
Quick Start
Add to Aerostack Workspace
- Go to aerostack.dev → Your Project → MCPs
- Search for "Surveymonkey" and click Add to Workspace
Add the following secrets under Project → Secrets:
SURVEYMONKEY_ACCESS_TOKEN
Once added, every AI agent in your workspace can use Surveymonkey tools automatically.
Direct API Call
curl -X POST https://mcp.aerostack.dev/s/aerostack/mcp-surveymonkey \
-H 'Content-Type: application/json' \
-H 'X-Mcp-Secret-SURVEYMONKEY-ACCESS-TOKEN: your-surveymonkey-access-token' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_surveys","arguments":{}}}'
License
MIT
terminal Tools (13)
Available tools on this MCP server. Each tool can be called directly from any AI agent.
_ping #1 Verify SurveyMonkey credentials by calling a lightweight read endpoint. Used internally by Aerostack to validate credentials.
list_surveys #2 List all surveys in the account with pagination.
get_survey #3 Get basic survey information by ID.
create_survey #4 Create a new survey.
get_survey_details #5 Get full survey details including pages and questions.
list_pages #6 List all pages in a survey.
create_page #7 Add a new page to a survey.
list_questions #8 List all questions on a survey page.
create_question #9 Add a question to a survey page.
list_collectors #10 List collectors (distribution links) for a survey.
create_collector #11 Create a new web link collector for a survey.
list_responses #12 List responses for a collector.
get_response_details #13 Get full details of a specific survey response.
Details
language Live Endpoint
https://mcp.aerostack.dev/s/aerostack/mcp-surveymonkey
Sub-50ms globally · Zero cold start
Publisher
Pre-built functions for the most common MCP tool patterns. Clone, extend, and deploy.
Tags
Frequently asked questions
What is the Surveymonkey MCP server and what can it do? +
The Surveymonkey MCP server is hosted on Aerostack and exposes these tools to your AI agent: `_ping`, `list_surveys`, `get_survey`, `create_survey`, `get_survey_details`. You get one hosted URL — no self-hosting — that works from Claude, Cursor, ChatGPT, Gemini, VS Code, or any MCP-compatible client, and you can share it with your team or combine it with other MCP servers in a workspace.
Is the Surveymonkey MCP server hosted, or do I have to run it myself? +
It's hosted on Aerostack's edge infrastructure — you don't deploy or maintain anything. Add it to a workspace and you get one authenticated URL, with secrets encrypted, that any AI agent or editor can connect to. Use it solo or share the same URL across your whole team.
Which AI agents and editors can use the Surveymonkey MCP server? +
Any MCP client: Claude and Claude Code, Cursor, ChatGPT, Gemini, Windsurf, Cline, VS Code, and custom agents. Because it's one hosted URL, the same Surveymonkey MCP server works everywhere — and you can compose it with other MCP servers, skills, and functions behind a single workspace URL.
How do I install the Surveymonkey MCP server in Claude Desktop? +
Add the following to your Claude Desktop config (`claude_desktop_config.json`): ```json { "mcpServers": { "@aerostack/mcp-surveymonkey": { "command": "npx", "args": ["-y", "@aerostack/@aerostack/mcp-surveymonkey"] } } } ``` Then restart Claude Desktop and the tools will appear automatically.
How do I use the Surveymonkey MCP server in Cursor? +
In Cursor, open **Settings → MCP** and add: ```json { "name": "@aerostack/mcp-surveymonkey", "command": "npx", "args": ["-y", "@aerostack/@aerostack/mcp-surveymonkey"] } ``` Save and reload Cursor. The MCP tools will be available in Agent mode.
Does Surveymonkey MCP require authentication? +
Yes. Surveymonkey requires authentication. Check the MCP's documentation for the required credentials.