altoviz-automation
Automate Altoviz 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:
Altoviz Automation Skill - Simplify Altoviz Task Integration with Rube MCP
Skill Overview
Easily automate Altoviz task operations using Composio’s Altoviz toolset and the Rube MCP server, without needing to manage API keys.
Use Cases
1. Altoviz Workflow Automation
When you need to run Altoviz tasks on a regular basis or based on conditions, this skill provides full capabilities for tool discovery, connection management, and execution. It supports both single-tool calls and batch operations, making it suitable for automating report generation, data synchronization, and more.
2. Multi-Account Altoviz Management
With Rube MCP’s connection management features, you can manage multiple Altoviz account connections simultaneously, check connection status, and switch execution across different accounts. This is especially useful for resellers or enterprises with multiple accounts.
3. Claude Skill/Agent Integration
Developers can quickly integrate Altoviz capabilities into a Claude skill or AI agent. Using a dynamic tool discovery mechanism ensures the latest tool Schema is always used, eliminating the need to manually maintain API interface changes.
Core Features
Dynamic Tool Discovery
Use
RUBE_SEARCH_TOOLS to retrieve the available Altoviz tool list, input Schema, and execution recommendations in real time. Since tool Schema may change, this skill requires tool discovery at the start of each workflow to ensure the correct call parameters.Connection Management
Use
RUBE_MANAGE_CONNECTIONS to check and manage Altoviz connection status. Before executing any tool, you must verify that the connection status is ACTIVE; otherwise, you need to complete the setup using the authentication link returned.Multi-Tool Execution
Use
RUBE_MULTI_EXECUTE_TOOL to execute multiple Altoviz tools within a single request. It supports session ID reuse to maintain workflow context. For large-scale batch operations, you can use RUBE_REMOTE_WORKBENCH to call run_composio_tool() for more efficient batch processing.FAQs
How do I get started with the Altoviz automation skill?
First, add https://rube.app/mcp as an MCP server—no API key is required. Then call RUBE_SEARCH_TOOLS to get the available tools, use RUBE_MANAGE_CONNECTIONS to confirm that the Altoviz connection status is ACTIVE, and finally execute the specific operations with RUBE_MULTI_EXECUTE_TOOL.
Why must I call RUBE_SEARCH_TOOLS first?
Composio’s toolset Schema is updated from time to time. Hard-coding tool names and parameters can cause calls to fail. Performing tool discovery first ensures you use the latest tool definitions, correct parameter names and types, and receive recommended execution plans.
How do I handle paginated data returned by Altoviz?
Check whether the tool response includes a pagination token. If it does, you must use that token in subsequent requests to continue fetching data until you obtain the complete results. The exact pagination parameter names can be found in the tool Schema returned by RUBE_SEARCH_TOOLS.