fillout_forms-automation
Scannednpx machina-cli add skill ComposioHQ/awesome-claude-skills/fillout_forms-automation --openclawFillout Automation via Rube MCP
Automate Fillout operations through Composio's Fillout toolkit via Rube MCP.
Toolkit docs: composio.dev/toolkits/fillout_forms
Prerequisites
- Rube MCP must be connected (RUBE_SEARCH_TOOLS available)
- Active Fillout connection via
RUBE_MANAGE_CONNECTIONSwith toolkitfillout_forms - 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 toolkitfillout_forms - 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": "forms, submissions, workflows, and form builder", "known_fields": ""}]
This returns:
- Available tool slugs for Fillout
- Recommended execution plan steps
- Known pitfalls and edge cases
- Input schemas for each tool
Core Workflows
1. Discover Available Fillout Tools
RUBE_SEARCH_TOOLS:
queries:
- use_case: "list all available Fillout tools and capabilities"
Review the returned tools, their descriptions, and input schemas before proceeding.
2. Execute Fillout 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 Fillout 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 Fillout 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 Fillout-specific use case |
| Connect | RUBE_MANAGE_CONNECTIONS with toolkit fillout_forms |
| 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/fillout_forms
Source
git clone https://github.com/ComposioHQ/awesome-claude-skills/blob/master/composio-skills/fillout_forms-automation/SKILL.mdView on GitHub Overview
Fillout Automation via Rube MCP enables automating forms, submissions, workflows, and the form builder using Composio's Fillout toolkit. It emphasizes discovering current tool schemas first with RUBE_SEARCH_TOOLS and keeping connections ACTIVE with RUBE_MANAGE_CONNECTIONS to ensure safe, schema-aligned actions. This approach helps teams stay aligned with live tool definitions and avoid duplicates or stale slugs.
How This Skill Works
Connect Rube MCP to the Fillout toolkit and verify availability with RUBE_SEARCH_TOOLS. Activate the toolkit using RUBE_MANAGE_CONNECTIONS and ensure the status is ACTIVE before running any workflows. Execute discovered tools with RUBE_MULTI_EXECUTE_TOOL or perform batch tasks via RUBE_REMOTE_WORKBENCH, and use RUBE_GET_TOOL_SCHEMAS when schemaRef is returned to validate inputs.
When to Use It
- Automate repetitive Fillout tasks across multiple forms, submissions, or workflows.
- Run multi-step Fillout workflows that pass data between steps.
- Ensure up-to-date tool schemas by always discovering tools before action.
- Perform bulk or batch Fillout operations with RUBE_REMOTE_WORKBENCH.
- Manage and re-authenticate Fillout connections when tokens expire.
Quick Start
- Step 1: Add https://rube.app/mcp as an MCP server in your client config and verify RUBE_SEARCH_TOOLS is available.
- Step 2: Connect to the Fillout toolkit with RUBE_MANAGE_CONNECTIONS and ensure the status shows ACTIVE.
- Step 3: Discover tools with RUBE_SEARCH_TOOLS and execute a tool using RUBE_MULTI_EXECUTE_TOOL or batch with RUBE_REMOTE_WORKBENCH.
Best Practices
- Always search tools first before action to learn current schemas and tool slugs.
- Check that the Fillout connection is ACTIVE before executing tools; re-authenticate if needed.
- Validate schemas strictly; use RUBE_GET_TOOL_SCHEMAS for schemaRef-based tools.
- Implement pagination handling with next_cursor or page_token when listing resources.
- Use RUBE_REMOTE_WORKBENCH for batch operations and back off on rate limits.
Example Use Cases
- Marketing automation: automatically submit a lead form across several campaigns using discovered Fillout tools.
- Support workflow: fetch a form, update a submission, and trigger a downstream workflow in a single sequence.
- Tool discovery: run RUBE_SEARCH_TOOLS to find available Fillout tools and then execute a selected tool via RUBE_MULTI_EXECUTE_TOOL.
- Bulk data tasks: perform bulk form submissions with RUBE_REMOTE_WORKBENCH and run_composio_tool in parallel.
- Paginated listings: list all submissions with pagination and process until next_cursor is exhausted.