通过 Rube MCP 自动化执行 Composio 任务,并先检索工具获取最新参数结构。
复制安装指令,让 AI 自动完成配置 · 推荐新手
请帮我安装 askskill 上的 "composio-automation" 技能: 1. 下载 https://raw.githubusercontent.com/ComposioHQ/awesome-claude-skills/master/composio-skills/composio-automation/SKILL.md 2. 保存为 ~/.claude/skills/composio-automation/SKILL.md 3. 装好后重载技能,告诉我可以用了
请先搜索 Composio 相关工具及其最新 schema,然后选择合适工具,帮我创建一个自动化任务:当收到新表单提交时,将数据同步到 Notion 数据库,并返回你使用的工具名、关键参数和执行结果。
先完成工具检索,再基于最新参数结构执行自动化,并返回所用工具、参数与结果说明。
请先搜索可用的 Composio 工具和 schema,帮我配置一个流程:把 Gmail 中带有“发票”标签的新邮件附件保存到 Google Drive,并在 Slack 发送通知。请列出每一步调用的工具。
输出一个基于最新工具定义的多应用自动化方案,并说明各步骤对应的工具调用。
先搜索当前 Composio 工具 schema,再检查为什么我的 Airtable 到 HubSpot 自动同步失败。请根据最新字段要求指出可能的参数错误,并给出可执行的修复方案。
基于最新 schema 分析失败原因,指出参数或字段映射问题,并给出修复后的调用建议。
Automate Composio operations through Composio's Composio toolkit via Rube MCP.
Toolkit docs: composio.dev/toolkits/composio
RUBE_MANAGE_CONNECTIONS with toolkit composioRUBE_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 composioAlways discover available tools before executing workflows:
RUBE_SEARCH_TOOLS
queries: [{use_case: "Composio 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 Composio task"}]
session: {id: "existing_session_id"}
RUBE_MANAGE_CONNECTIONS
toolkits: ["composio"]
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 Composio-specific use case |
| Connect | RUBE_MANAGE_CONNECTIONS with toolkit composio |
| 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
通过 Rube MCP 自动化 Agiled 中的客户、项目与业务流程操作。
通过 Rube MCP 自动化执行 AI/ML API 任务,并先检索最新工具 schema。