Automate Raisely operations and workflows through Rube MCP and Composio.
Copy the install command and let the AI configure it · recommended for beginners
Please install the "raisely-automation" skill from askskill: 1. Download https://raw.githubusercontent.com/ComposioHQ/awesome-claude-skills/master/composio-skills/raisely-automation/SKILL.md 2. Save it as ~/.claude/skills/raisely-automation/SKILL.md 3. Reload skills and tell me it's ready
Developers or operations staff can search for the currently available Raisely tools and parameter schemas before building a workflow, reducing failures caused by changing tool definitions.
Before running any Raisely workflow, users can verify the connection status first; if it is not active, they can complete setup through the returned authorization link and continue afterward.
After obtaining tool discovery results and connection status, users can reuse the same session_id to execute Raisely tools and continue with pagination or follow-up steps based on the response.
The README explains how to automate Raisely operations through Composio's Raisely toolkit via Rube MCP. The recommended workflow is to first use RUBE_SEARCH_TOOLS to discover current tools and schemas, then verify the Raisely connection with RUBE_MANAGE_CONNECTIONS, and finally execute actions with RUBE_MULTI_EXECUTE_TOOL. It also highlights key cautions such as reusing session IDs, always including the memory parameter, handling pagination, and avoiding hardcoded schemas.
Automate Raisely operations through Composio's Raisely toolkit via Rube MCP.
Toolkit docs: composio.dev/toolkits/raisely
RUBE_MANAGE_CONNECTIONS with toolkit raiselyRUBE_SEARCH_TOOLS first to get current tool schemasGet Rube MCP: Add https://rube.app/mcp as an MCP server in your client configuration. No API keys needed — just add the endpoint and it works.
RUBE_SEARCH_TOOLS respondsRUBE_MANAGE_CONNECTIONS with toolkit raiselyAlways discover available tools before executing workflows:
RUBE_SEARCH_TOOLS
queries: [{use_case: "Raisely operations", known_fields: ""}]
session: {generate_id: true}
This returns available tool slugs, input schemas, recommended execution plans, and known pitfalls.
RUBE_SEARCH_TOOLS
queries: [{use_case: "your specific Raisely task"}]
session: {id: "existing_session_id"}
RUBE_MANAGE_CONNECTIONS
toolkits: ["raisely"]
session_id: "your_session_id"
RUBE_MULTI_EXECUTE_TOOL
tools: [{
tool_slug: "TOOL_SLUG_FROM_SEARCH",
arguments: {/* schema-compliant args from search results */}
}]
memory: {}
session_id: "your_session_id"
RUBE_SEARCH_TOOLSRUBE_MANAGE_CONNECTIONS shows ACTIVE status before executing toolsmemory in RUBE_MULTI_EXECUTE_TOOL calls, even if empty ({})| Operation | Approach |
|---|---|
| Find tools | RUBE_SEARCH_TOOLS with Raisely-specific use case |
| Connect | RUBE_MANAGE_CONNECTIONS with toolkit raisely |
| Execute | RUBE_MULTI_EXECUTE_TOOL with discovered tool slugs |
| Bulk ops | RUBE_REMOTE_WORKBENCH with run_composio_tool() |
| Full schema | RUBE_GET_TOOL_SCHEMAS for tools with schemaRef |
Powered by Composio
It uses Rube MCP to access Composio's Raisely toolkit for automating Raisely operations. The docs emphasize searching for tools first, checking the connection, and then executing with the returned schema.
You need Rube MCP to be available and RUBE_SEARCH_TOOLS to respond. You also need to configure and activate the Raisely connection through RUBE_MANAGE_CONNECTIONS.
Because tool slugs and input schemas can change, the docs explicitly say not to hardcode arguments. You should call RUBE_SEARCH_TOOLS first and execute using the returned field names and types.
Automate Streamtime project tasks and workflows through Rube MCP.
Automate Kickbox email verification and related data workflows through Rube MCP.
Automate V0 workflows via Rube MCP using current tool schemas first.
Automate Serpdog search tasks via Rube MCP for scalable result retrieval.
Automate Wit AI workflows via Rube MCP using current tool schemas first.
Automate Kit tasks via Rube MCP with schema lookup first.
Automate Ragic workflows via Rube MCP while checking current tool schemas first.
Discover and automate Reply tasks through Rube MCP with schema-first execution.
Automate FlowiseAI tasks via Rube MCP using current tool schemas first.
Automate Composio tasks via Rube MCP with tool schema lookup first.
Automate Autom workflows via Rube MCP while checking current tool schemas first.
Automate Recallai workflows through Rube MCP with tool-schema lookup first.