corrently-automation

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

Install

Hot:16

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

Corrently Automation - Automate Corrently Tasks via Rube MCP

Skill Overview


Corrently Automation is a skill that automates the execution of Corrently tasks through Rube MCP (a no-API-key MCP server provided by Composio). Its core feature is that before every run, it must search for tools to obtain the latest modes.

Suitable Scenarios

  • Integrating Corrently features into AI agents: When your AI agent needs to call various Corrently operations (e.g., energy management, green power queries, etc.) but you don’t want to hard-code tool modes.
  • Dynamic tool environment: When Corrently tool modes frequently change, you need to ensure each execution uses the latest input parameters and field definitions.
  • Quick integration without an API key: When you want to quickly test or use Corrently functionality without applying for and managing an API key (with Rube MCP, you only need to add an endpoint to use it).
  • Core Features

  • Intelligent tool discovery: Use RUBE_SEARCH_TOOLS to dynamically discover available tools and their latest modes, avoiding hard-coded, outdated tool definitions.
  • Connection status management: Use RUBE_MANAGE_CONNECTIONS to check and manage the Corrently toolkit connection status, ensuring the connection is activated before executing operations.
  • Batch tool execution: Use RUBE_MULTI_EXECUTE_TOOL to execute multiple Corrently operations within a single session, supporting session reuse and memory management.
  • Common Questions

    What is Rube MCP? How do I add it?


    Rube MCP is a free MCP server provided by Composio. You can use it without an API key. In your client configuration file, add https://rube.app/mcp as the MCP server to start using it. After adding it, you can access tools such as RUBE_SEARCH_TOOLS and RUBE_MANAGE_CONNECTIONS.

    Why must I search tools before executing?


    Corrently tool modes are updated from time to time, including changes to tool names, parameter structures, and field types. If you hard-code these definitions, your code may break after a tool update. RUBE_SEARCH_TOOLS returns the current latest tool modes, ensuring your execution requests are always valid.

    How do I check whether the Corrently connection is activated?


    Use the RUBE_MANAGE_CONNECTIONS tool, passing toolkits as ["corrently"]. The returned connection status will show ACTIVE, PENDING, or other states. If it is not ACTIVE, follow the authentication link returned to complete the authorization setup. Only after activation should you execute any Corrently operations.