enigma-automation
Automate Enigma tasks via Rube MCP (Composio). Always search tools first for current schemas.
Author
Category
Development ToolsInstall
Hot:22
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-enigma-automation&locale=en&source=copy
Enigma Automation - Automating Enigma Tasks via Rube MCP
Skill Overview
Enigma Automation is a skill that automates Enigma operations through Composio’s Rube MCP server. It enables the Claude agent to discover available tools, manage connections, and execute Enigma API tasks.
Use Cases
Suitable for scenarios where data needs to be queried, transformed, or exported via the Enigma API—especially automated flows that handle batch processing on a regular basis.
Adds Enigma data access to a Claude agent, allowing it to dynamically call Enigma tools during conversations to complete data-related tasks.
Uses the Model Context Protocol (MCP) standard to integrate Enigma into MCP-compatible applications, enabling tool calling without writing custom code.
Core Features
Uses
RUBE_SEARCH_TOOLS to automatically fetch the latest Enigma tool Schema, avoiding hard-coded tool definitions. Since the tool Schema may change over time, this skill always uses the most up-to-date tool definitions and parameter formats.Uses
RUBE_MANAGE_CONNECTIONS to manage Enigma connections—checks connection status and completes authorization when needed. Supports session-level connection reuse to improve execution efficiency.Uses
RUBE_MULTI_EXECUTE_TOOL to execute multiple Enigma operations within a single session. Supports batch processing and complex workflows, reducing the number of calls.FAQs
What is Rube MCP? How do I use it?
Rube MCP is an MCP server provided by Composio and can be used without an API key. In your client configuration, add
https://rube.app/mcp as the MCP server to access multiple toolkits, including Enigma. After configuration, use RUBE_SEARCH_TOOLS to verify that the connection was successful.How do I connect Enigma to Rube MCP?
First, call
RUBE_SEARCH_TOOLS to confirm that Rube MCP is available. Then use RUBE_MANAGE_CONNECTIONS and specify toolkit as enigma. If the connection is not activated, it will return an authorization link. After completing authorization, you can use it. Before executing tasks, always confirm that the connection status is ACTIVE.Why do we always need to search for tools first?
The Enigma tool Schema (tool names and parameter formats) changes over time. Hard-coding tool definitions may cause calls to fail.
RUBE_SEARCH_TOOLS returns the currently available tool list, input formats, and execution recommendations to ensure calls succeed. The core workflow of this skill is to search for and retrieve the latest Schema first, then execute the tools.