Discover and automate Listclean workflows through Rube MCP and Composio.
Copy the install command and let the AI configure it · recommended for beginners
Please install the "listclean-automation" skill from askskill: 1. Download https://raw.githubusercontent.com/ComposioHQ/awesome-claude-skills/master/composio-skills/listclean-automation/SKILL.md 2. Save it as ~/.claude/skills/listclean-automation/SKILL.md 3. Reload skills and tell me it's ready
After connecting Rube in an MCP client, a developer can search for available Listclean tools first, then run automation with the latest schema to avoid broken hardcoded calls.
Before running any Listclean workflow, the user can verify that the listclean connection is ACTIVE to reduce failures caused by missing authorization or inactive connections.
For bulk processing, users can build execution flows from the discovered tools and schemas while reusing the session, including memory, and handling paginated results.
This README explains how to automate the Composio Listclean toolkit through Rube MCP. It covers prerequisites, connection setup, and the recommended workflow: search for tools first, verify the Listclean connection is active, and then execute with the discovered schema. It also highlights key pitfalls such as avoiding hardcoded arguments, reusing session IDs, always including the memory parameter, and handling pagination or full schema lookups when needed.
Automate Listclean operations through Composio's Listclean toolkit via Rube MCP.
Toolkit docs: composio.dev/toolkits/listclean
RUBE_MANAGE_CONNECTIONS with toolkit listcleanRUBE_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 listcleanAlways discover available tools before executing workflows:
RUBE_SEARCH_TOOLS
queries: [{use_case: "Listclean 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 Listclean task"}]
session: {id: "existing_session_id"}
RUBE_MANAGE_CONNECTIONS
toolkits: ["listclean"]
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 Listclean-specific use case |
| Connect | RUBE_MANAGE_CONNECTIONS with toolkit listclean |
| 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 lets you automate Listclean-related operations through Rube MCP using Composio’s Listclean toolkit. The docs emphasize searching for tools first, then executing with the latest returned schema.
You need to add the Rube MCP server at `https://rube.app/mcp` in your client and confirm `RUBE_SEARCH_TOOLS` is available. You also need to configure and activate the `listclean` connection through `RUBE_MANAGE_CONNECTIONS`; the docs say no separate API key is required.
Because tool schemas can change, the docs explicitly require calling `RUBE_SEARCH_TOOLS` first to get the current tool slug and argument structure. Execution also requires exact field names and types, and `memory` must always be included in `RUBE_MULTI_EXECUTE_TOOL`.
Automate Habitica task creation, updates, and lookups through Rube MCP.
Automate CoinMarketCap queries and data workflows through Rube MCP tools.
Automate Bookingmood tasks and workflows through Rube MCP integrations.
Automate Contentful GraphQL workflows via Rube MCP using current schemas first.
Automate Control D configuration and management tasks through Rube MCP.
Automate file and format conversion tasks via Rube MCP with schema lookup first.
Automate Clearout workflows via Rube MCP using up-to-date tool schemas.
Automate Campaign Cleaner maintenance workflows through Rube MCP with current tool schemas.
Automate Userlist workflows via Rube MCP with schema-first tool discovery.
Automate curated workflows with Rube MCP after checking current tool schemas first.
Automate AI/ML API workflows via Rube MCP, checking latest tool schemas first.
Automate Langbase workflows through Rube MCP using current tool schemas.