composio-connect
通过 Composio 和 mcporter 将 850 多个应用程序(Gmail、Slack、GitHub、Calendar、Notion、Jira 等)连接到 OpenClaw。当用户要求发送电子邮件、创建问题、发布消息、管理日历、搜索文档或与任何第三方 SaaS 应用程序交互时使用。一项技能,11,000 多个工具,管理 OAuth。
安装 / 下载方式
TotalClaw CLI推荐
totalclaw install totalclaw:totalclaw~samotheos-composio-connectcURL直接下载,无需登录
curl -fsSL https://skills.taituai.com/api/skills/totalclaw%3Atotalclaw~samotheos-composio-connect/file -o samotheos-composio-connect.md## 概述(中文) 通过 Composio 和 mcporter 将 850 多个应用程序(Gmail、Slack、GitHub、Calendar、Notion、Jira 等)连接到 OpenClaw。当用户要求发送电子邮件、创建问题、发布消息、管理日历、搜索文档或与任何第三方 SaaS 应用程序交互时使用。一项技能,11,000 多个工具,管理 OAuth。 ## 原文 # Check if composio MCP server is registered in mcporter ```bash mcporter list ``` If composio does not appear you should add it with this command: ```bash mcporter config add composio --url $COMPOSIO_MCP_URL ``` ## Discovering Tools Before attempting to call any composio MCP tool, you must perform a targeted search to identify the correct tool name and required parameters. ```bash mcporter list composio --all-parameters | grep -niE -B 14 '^\s*function\s+SPOTIFY_.*(VOLUME|PLAYBACK)|^\s*function\s+.*(VOLUME|PLAYBACK).*SPOTIFY_' ``` ## Executing Tools Once you know the tool name from search, call it: ```bash mcporter call 'composio.SPOTIFY_SET_PLAYBACK_VOLUME(volume_percent:"90")' ``` ```bash mcporter call 'composio.TODOIST_CREATE_TASK(content: "Pay electricity bill", due_string: "tomorrow at 4pm")' ``` ```bash mcporter call 'composio.GMAIL_CREATE_DRAFT(to: "name@example.com", subject: "Quick question", body: "Hey — ...")' ```