aryn-automation
Automate Aryn 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:
Aryn Automation - Automate Aryn Operations via Rube MCP
Skill Overview
Aryn Automation is a skill that automates Aryn operations by using the Rube MCP and the Composio Aryn tool kit. It enables tool discovery, connection management, and bulk execution without needing an API key.
Use Cases
When you need to run Aryn operations on a regular basis, this skill enables a fully automated process, including dynamic tool discovery, connection status checks, and bulk task execution.
When you need to perform Aryn operations on large volumes of data, using
RUBE_MULTI_EXECUTE_TOOL and RUBE_REMOTE_WORKBENCH efficiently handles bulk tasks, supporting pagination and session reuse.Developers building applications using the MCP protocol can quickly integrate Aryn functionality with this skill, without separately managing API keys and connection states.
Core Features
By using
RUBE_SEARCH_TOOLS to fetch the latest Aryn tool Schema in real time, you avoid hard-coding tool parameters and stay synchronized with changes in the Aryn API. It supports searching tools by use case and returns an execution plan along with known pitfalls.Use
RUBE_MANAGE_CONNECTIONS to check and manage Aryn connection status. Before running a workflow, validate that the connection is active to prevent task failures caused by connection issues.Use
RUBE_MULTI_EXECUTE_TOOL to run multiple Aryn tools within a single session. It supports passing memory parameters and reusing a session ID, improving automation efficiency.Frequently Asked Questions
What is Rube MCP? Do I need an API key?
Rube MCP is an MCP protocol server provided by Composio to simplify third-party tool integration. It does not require an API key. You only need to add the server address https://rube.app/mcp to your MCP client configuration to use it.
How do I check whether the Aryn connection was successful?
Use the RUBE_MANAGE_CONNECTIONS tool, specify toolkits: ["aryn"], and review the returned connection status. Only when the status is ACTIVE can you execute Aryn tools normally. If it isn’t activated, it will return an authentication link for you to complete authorization.
Will the tool Schema change? How can I get the latest version?
Yes. The Schema for Aryn tools may be updated. Therefore, you should call RUBE_SEARCH_TOOLS before every workflow execution to retrieve the latest tool definitions, input parameters, and recommended execution plan, avoiding call failures caused by Schema changes.