survey_monkey-automation
Scannednpx machina-cli add skill ComposioHQ/awesome-claude-skills/survey_monkey-automation --openclawSurveyMonkey Automation via Rube MCP
Automate SurveyMonkey operations through Composio's SurveyMonkey toolkit via Rube MCP.
Toolkit docs: composio.dev/toolkits/survey_monkey
Prerequisites
- Rube MCP must be connected (RUBE_SEARCH_TOOLS available)
- Active SurveyMonkey connection via
RUBE_MANAGE_CONNECTIONSwith toolkitsurvey_monkey - Always call
RUBE_SEARCH_TOOLSfirst to get current tool schemas
Setup
Get Rube MCP: Add https://rube.app/mcp as an MCP server in your client configuration. No API keys needed — just add the endpoint and it works.
- Verify Rube MCP is available by confirming
RUBE_SEARCH_TOOLSresponds - Call
RUBE_MANAGE_CONNECTIONSwith toolkitsurvey_monkey - If connection is not ACTIVE, follow the returned auth link to complete setup
- Confirm connection status shows ACTIVE before running any workflows
Tool Discovery
Always discover available tools before executing workflows:
RUBE_SEARCH_TOOLS: queries=[{"use_case": "surveys, responses, collectors, and survey analytics", "known_fields": ""}]
This returns:
- Available tool slugs for SurveyMonkey
- Recommended execution plan steps
- Known pitfalls and edge cases
- Input schemas for each tool
Core Workflows
1. Discover Available SurveyMonkey Tools
RUBE_SEARCH_TOOLS:
queries:
- use_case: "list all available SurveyMonkey tools and capabilities"
Review the returned tools, their descriptions, and input schemas before proceeding.
2. Execute SurveyMonkey Operations
After discovering tools, execute them via:
RUBE_MULTI_EXECUTE_TOOL:
tools:
- tool_slug: "<discovered_tool_slug>"
arguments: {<schema-compliant arguments>}
memory: {}
sync_response_to_workbench: false
3. Multi-Step Workflows
For complex workflows involving multiple SurveyMonkey operations:
- Search for all relevant tools:
RUBE_SEARCH_TOOLSwith specific use case - Execute prerequisite steps first (e.g., fetch before update)
- Pass data between steps using tool responses
- Use
RUBE_REMOTE_WORKBENCHfor bulk operations or data processing
Common Patterns
Search Before Action
Always search for existing resources before creating new ones to avoid duplicates.
Pagination
Many list operations support pagination. Check responses for next_cursor or page_token and continue fetching until exhausted.
Error Handling
- Check tool responses for errors before proceeding
- If a tool fails, verify the connection is still ACTIVE
- Re-authenticate via
RUBE_MANAGE_CONNECTIONSif connection expired
Batch Operations
For bulk operations, use RUBE_REMOTE_WORKBENCH with run_composio_tool() in a loop with ThreadPoolExecutor for parallel execution.
Known Pitfalls
- Always search tools first: Tool schemas and available operations may change. Never hardcode tool slugs without first discovering them via
RUBE_SEARCH_TOOLS. - Check connection status: Ensure the SurveyMonkey connection is ACTIVE before executing any tools. Expired OAuth tokens require re-authentication.
- Respect rate limits: If you receive rate limit errors, reduce request frequency and implement backoff.
- Validate schemas: Always pass strictly schema-compliant arguments. Use
RUBE_GET_TOOL_SCHEMASto load full input schemas whenschemaRefis returned instead ofinput_schema.
Quick Reference
| Operation | Approach |
|---|---|
| Find tools | RUBE_SEARCH_TOOLS with SurveyMonkey-specific use case |
| Connect | RUBE_MANAGE_CONNECTIONS with toolkit survey_monkey |
| Execute | RUBE_MULTI_EXECUTE_TOOL with discovered tool slugs |
| Bulk ops | RUBE_REMOTE_WORKBENCH with run_composio_tool() |
| Full schema | RUBE_GET_TOOL_SCHEMAS for tools with schemaRef |
Toolkit docs: composio.dev/toolkits/survey_monkey
Source
git clone https://github.com/ComposioHQ/awesome-claude-skills/blob/master/composio-skills/survey_monkey-automation/SKILL.mdView on GitHub Overview
Automates SurveyMonkey tasks using Composio's Rube MCP toolkit. It covers surveys, responses, collectors, and analytics, and emphasizes discovering current tool schemas first to keep workflows aligned with the latest toolkit definitions.
How This Skill Works
Connect to Rube MCP and the SurveyMonkey toolkit, then use RUBE_SEARCH_TOOLS to fetch up-to-date tool schemas. Execute specific operations with RUBE_MULTI_EXECUTE_TOOL using discovered slugs and inputs. For complex or bulk workflows, leverage RUBE_REMOTE_WORKBENCH to run parallel tasks and pass data between steps.
When to Use It
- When onboarding a new SurveyMonkey integration and you need to discover available tools and their input schemas
- When creating or updating surveys, collectors, or analytics workflows via automated actions
- When orchestrating multi-step SurveyMonkey workflows that require data handoffs between steps
- When performing bulk operations across many surveys or collectors to save time
- When tokens expire or connections need re-authentication and you must re-establish ACTIVE status
Quick Start
- Step 1: Verify Rube MCP availability and connect SurveyMonkey (RUBE_SEARCH_TOOLS; RUBE_MANAGE_CONNECTIONS) to ensure ACTIVE status
- Step 2: Discover tools and input schemas with RUBE_SEARCH_TOOLS and review tool slugs and requirements
- Step 3: Execute a discovered tool with RUBE_MULTI_EXECUTE_TOOL; for bulk tasks, use RUBE_REMOTE_WORKBENCH
Best Practices
- Always search tools first with RUBE_SEARCH_TOOLS to avoid stale slugs or schemas
- Check that the SurveyMonkey connection is ACTIVE via RUBE_MANAGE_CONNECTIONS before actions
- Validate inputs against current schemas; use RUBE_GET_TOOL_SCHEMAS when schemaRef is provided
- Handle pagination in list operations using next_cursor or page_token and loop until exhausted
- Use RUBE_REMOTE_WORKBENCH for bulk operations and parallel execution when appropriate
Example Use Cases
- Discover all available SurveyMonkey tools and their input schemas before building a workflow
- Create a workflow to fetch survey analytics and export results to a CSV
- Update settings across multiple surveys in parallel using bulk execution
- Fetch responses for a collector, then trigger a follow-up action based on responses
- Re-authenticate an expired token via RUBE_MANAGE_CONNECTIONS and resume workflows