evenium-automation

Automate Evenium tasks via Rube MCP (Composio). Always search tools first for current schemas.

Install

Hot:20

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-evenium-automation&locale=en&source=copy

Evenium Automation - Rube MCP Automation Integration

Skill Overview


Evenium Automation provides activity administrators and developers with automation task capabilities for the Evenium platform through Composio’s Rube MCP server. It supports bulk operations, connection management, and workflow orchestration.

Use Cases


  • Bulk activity management: Automatically handle the creation, updates, or synchronization of multiple activities using RUBE_MULTI_EXECUTE_TOOL to perform bulk operations.

  • Enterprise system integration: Integrate Evenium into existing workflows by interacting with the activity platform via a unified MCP interface, without separately developing API integrations.

  • Activity platform connection management: Monitor and manage the connection status of Evenium accounts to ensure connections are healthy before running automation tasks.
  • Core Features


  • Tool discovery and validation: Use RUBE_SEARCH_TOOLS to fetch the list of available Evenium tools and their input schemas in real time, avoiding hard-coded outdated tool definitions.

  • Connection status management: Use RUBE_MANAGE_CONNECTIONS to check and activate Evenium connections, ensuring the toolkit status is ACTIVE before executing tasks.

  • Bulk execution of multiple tools: Use RUBE_MULTI_EXECUTE_TOOL to combine multiple Evenium operations, supporting session reuse and memory parameter passing.
  • FAQs

    How do I connect Evenium via Rube MCP?


    First, add https://rube.app/mcp as an MCP server (no API key required). After connecting, call RUBE_MANAGE_CONNECTIONS with the toolkit parameter set to evenium. If the status is not ACTIVE, complete the setup using the authentication link returned. It’s recommended to verify the connection status before running each automation task.

    How can I get the Evenium tool list?


    Use RUBE_SEARCH_TOOLS to query Evenium-related tools. This tool returns available tool_slugs, input schemas, recommended execution plans, and known pitfalls. Be sure to call this tool at the start of every workflow, since schemas may change. Reusing the returned session_id helps maintain session consistency.

    What are common pitfalls when executing Evenium tasks?


    There are five key points to watch: 1) Always call RUBE_SEARCH_TOOLS first to get the latest schema; 2) Confirm the connection status is ACTIVE before executing; 3) Pass parameters strictly using the field names and types from the search results; 4) RUBE_MULTI_EXECUTE_TOOL must include a memory parameter (can be an empty object {}); 5) Check the pagination token in the response to ensure all data is retrieved.