jigsawstack-automation
Automate Jigsawstack tasks via Rube MCP (Composio). Always search tools first for current schemas.
Author
Category
Development ToolsInstall
Hot:29
Download and extract to your skills directory
Copy command and send to OpenClaw for auto-install:
Download and install this skill https://openskills.cc/api/download?slug=composiohq-composio-skills-jigsawstack-automation&locale=en&source=copy
Jigsawstack Automation
Skills Overview
Automatically execute Jigsawstack tasks with Rube MCP. It supports tool discovery, connection management, and batch operations, enabling end-to-end Jigsawstack workflow automation without needing an API key.
Use Cases
1. Bulk Jigsawstack Operations
When you need to run multiple Jigsawstack tool calls at the same time,
RUBE_MULTI_EXECUTE_TOOL can complete the batch in one go, significantly improving efficiency. It also supports running more complex batch scripts via RUBE_REMOTE_WORKBENCH.2. Dynamic Tool Integration
The Jigsawstack tool architecture is updated over time. This skill uses
RUBE_SEARCH_TOOLS to always fetch the latest tool architecture and parameter specifications, preventing call failures caused by hard-coded values. Before each execution, it searches for tools first to ensure the correct parameter format is used.3. Quick Integration Without Keys
Add
https://rube.app/mcp as an MCP server to start using it—no need to request an API key or configure authentication details. Use RUBE_MANAGE_CONNECTIONS to manage connection status, simplifying the complexity of Jigsawstack integration.Core Features
1. Smart Tool Discovery
Use
RUBE_SEARCH_TOOLS to dynamically retrieve the Jigsawstack tool list, input schemas, and execution plans. The search results include each available tool’s slug, parameter specifications, known pitfalls, and recommended execution methods—ensuring every call uses the correct tool and parameters.2. Connection Status Management
Use
RUBE_MANAGE_CONNECTIONS to monitor the Jigsawstack connection status in real time. The skill checks whether the connection is ACTIVE. If it is not activated, it returns an authorization link to complete setup. Only after confirmation does it execute any workflows, preventing invalid calls.3. Batch Tool Execution
Supports batch execution of multiple Jigsawstack tools using
RUBE_MULTI_EXECUTE_TOOL. Each tool call is based on the architecture returned by the search results. For complex operations, you can use RUBE_REMOTE_WORKBENCH to call the run_composio_tool() function for more flexible batch control.Frequently Asked Questions
Why must I call RUBE_SEARCH_TOOLS first?
The Jigsawstack tool architecture changes as the Composio platform updates. Hard-coding tool slugs or parameters can cause calls to fail.
RUBE_SEARCH_TOOLS always returns the latest tool list and architecture, which is the key step to ensuring successful calls.Does this skill require an API key?
No. Just add
https://rube.app/mcp as the server address in your MCP client configuration. Jigsawstack connections are managed via RUBE_MANAGE_CONNECTIONS, so you don’t need to configure authentication details separately.How do I handle batch operations?
Use
RUBE_MULTI_EXECUTE_TOOL to execute multiple tool calls in a single run, with each tool’s parameter schema coming from the search results. For complex batch operations that require loops or conditional logic, use RUBE_REMOTE_WORKBENCH and call the run_composio_tool() function for more flexible control.