surveys
SurveyMonkey MCP Integration for OpenAI Agents SDK
Connect SurveyMonkey to OpenAI Agents SDK through the local KosmoKrator MCP gateway with scoped tools, credentials, and write policy.
Connect SurveyMonkey to OpenAI Agents SDK
Attach KosmoKrator integration tools to OpenAI Agents SDK workflows through a local MCP gateway.
Start the KosmoKrator MCP gateway locally and point the OpenAI Agents SDK MCP tool at that process or wrapper. The gateway is local, scoped to this integration, and starts with
--write=deny so OpenAI Agents can inspect read-capable tools without receiving write access by default.
SurveyMonkey MCP Config for OpenAI Agents SDK
Use headless JSON commands for CI-style execution and MCP for agent tool discovery.
{
"mcpServers": {
"kosmokrator-surveymonkey": {
"type": "stdio",
"command": "kosmo",
"args": [
"mcp:serve",
"--integration=surveymonkey",
"--write=deny"
]
}
}
} Run the Gateway Manually
kosmokrator mcp:serve --integration=surveymonkey --write=deny Why Use KosmoKrator Here
Expose only SurveyMonkey instead of a broad multi-service tool list.
Reuse credentials already configured for the KosmoKrator CLI and Lua runtime.
Start read-only, then opt into ask or allow for trusted workspaces.
SurveyMonkey Tools Visible to OpenAI Agents
OpenAI Agents sees stable MCP tool names generated from the SurveyMonkey integration catalog.
| MCP tool | Source function | Type | Description |
|---|---|---|---|
integration__surveymonkey__surveymonkey_list_surveys | surveymonkey.surveymonkey_list_surveys | Read | List all surveys in your SurveyMonkey account. Returns survey IDs, titles, and creation dates. |
integration__surveymonkey__surveymonkey_get_survey | surveymonkey.surveymonkey_get_survey | Read | Get details of a specific SurveyMonkey survey by ID, including title, language, and question count. |
integration__surveymonkey__surveymonkey_create_survey | surveymonkey.surveymonkey_create_survey | Write | Create a new blank survey in SurveyMonkey with a given title. |
integration__surveymonkey__surveymonkey_list_responses | surveymonkey.surveymonkey_list_responses | Read | List all bulk responses for a SurveyMonkey survey. Returns response IDs, timestamps, and answer data. |
integration__surveymonkey__surveymonkey_get_response | surveymonkey.surveymonkey_get_response | Read | Get a single response for a SurveyMonkey survey by response ID, including all answers and metadata. |
integration__surveymonkey__surveymonkey_list_collectors | surveymonkey.surveymonkey_list_collectors | Read | List all collectors for a SurveyMonkey survey. Collectors are distribution channels (e.g., weblink, email). |
integration__surveymonkey__surveymonkey_create_collector | surveymonkey.surveymonkey_create_collector | Write | Create a collector for a SurveyMonkey survey to distribute it. Collector types include "weblink" (shareable URL) and "email" (email invitation). |
integration__surveymonkey__surveymonkey_get_current_user | surveymonkey.surveymonkey_get_current_user | Read | Get details of the currently authenticated SurveyMonkey user, including name, email, and plan info. |