autom-automation
Automate Autom tasks via Rube MCP (Composio). Always search tools first for current schemas.
Author
Category
Development ToolsInstall
Download and extract to your skills directory
Copy command and send to OpenClaw for auto-install:
Autom Automation — Autom Task Automation via Rube MCP
Skills Overview
With Composio’s Autom toolkit and the Rube MCP server, you can automate Autom operations without needing an API key.
Use Cases
RUBE_REMOTE_WORKBENCH to run a large number of Autom operations—ideal for scenarios that require bulk processing of records or workflows.RUBE_SEARCH_TOOLS to dynamically fetch the latest tool definitions, avoiding failures caused by hard-coded values.Core Features
By using
RUBE_SEARCH_TOOLS in real time, you can obtain the list of available Autom tools, the input parameter formats, and recommended execution plans. This ensures your code stays in sync with the latest Autom API without manually maintaining tool definitions.Use
RUBE_MANAGE_CONNECTIONS to check and manage the connection status with Autom. The skill will guide you through the authorization flow and only begin executing tasks after the connection is ready.Use
RUBE_MULTI_EXECUTE_TOOL to execute multiple Autom operations in a single request, supporting session reuse and memory passing to improve workflow efficiency.Common Questions
Does Rube MCP require payment or an API key?
No. The Rube MCP server (https://rube.app/mcp) can be added for free to your MCP client configuration without registration or providing an API key. Just add the endpoint to your configuration file to start using it.
Why must I call RUBE_SEARCH_TOOLS first?
The Autom tool schema (field names, types, required parameters) is updated from time to time. If you hard-code the tool definitions directly, your code may break after the API changes. Using RUBE_SEARCH_TOOLS to dynamically fetch the schema ensures code stability while also retrieving the official recommended execution plan.
How do I resolve the connection status showing as INACTIVE?
When RUBE_MANAGE_CONNECTIONS returns a status other than ACTIVE, the response will include an authorization link. Click the link to complete Autom account authorization, then call the connection check interface again to confirm the status becomes ACTIVE. Tool calls can only be successfully executed when the status is ACTIVE.