ClawConnect - Universal account connector for AI agents. Send tweets, read/send Gmail, manage calendar, send Slack messages, and more through one API.
AI代理的通用账户连接器。一个API即可访问Gmail、日历、Twitter、Slack和Discord。
基础URL:https://clawconnect.dev
列出已连接的账户:
bash
curl -H Authorization: Bearer $CLAWCONNECTAPIKEY \
https://clawconnect.dev/api/v1/connections
获取你的Twitter个人资料:
bash
curl -H Authorization: Bearer $CLAWCONNECTAPIKEY \
https://clawconnect.dev/api/v1/twitter/me
获取时间线:
bash
curl -H Authorization: Bearer $CLAWCONNECTAPIKEY \
https://clawconnect.dev/api/v1/twitter/timeline
发布推文:
bash
curl -X POST -H Authorization: Bearer $CLAWCONNECTAPIKEY \
-H Content-Type: application/json \
-d {text: 来自ClawConnect的问候!} \
https://clawconnect.dev/api/v1/twitter/tweet
列出邮件(可选搜索查询和最大结果数):
bash
curl -H Authorization: Bearer $CLAWCONNECTAPIKEY \
https://clawconnect.dev/api/v1/gmail/messages?q=is:unread&maxResults=10
按ID获取邮件:
bash
curl -H Authorization: Bearer $CLAWCONNECTAPIKEY \
https://clawconnect.dev/api/v1/gmail/messages/MESSAGE_ID
发送邮件:
bash
curl -X POST -H Authorization: Bearer $CLAWCONNECTAPIKEY \
-H Content-Type: application/json \
-d {to: recipient@example.com, subject: 你好, body: 邮件正文内容} \
https://clawconnect.dev/api/v1/gmail/send
列出事件(可选时间范围和最大结果数):
bash
curl -H Authorization: Bearer $CLAWCONNECTAPIKEY \
https://clawconnect.dev/api/v1/calendar/events?timeMin=2025-01-01T00:00:00Z&timeMax=2025-01-31T23:59:59Z&maxResults=20
列出工作区用户:
bash
curl -H Authorization: Bearer $CLAWCONNECTAPIKEY \
https://clawconnect.dev/api/v1/slack/users
列出频道:
bash
curl -H Authorization: Bearer $CLAWCONNECTAPIKEY \
https://clawconnect.dev/api/v1/slack/channels
获取你的Slack个人资料:
bash
curl -H Authorization: Bearer $CLAWCONNECTAPIKEY \
https://clawconnect.dev/api/v1/slack/profile
发送消息(频道可以是频道ID或用户ID):
bash
curl -X POST -H Authorization: Bearer $CLAWCONNECTAPIKEY \
-H Content-Type: application/json \
-d {channel: C01234ABCDE, text: 你好!} \
https://clawconnect.dev/api/v1/slack/send
获取你的Discord个人资料:
bash
curl -H Authorization: Bearer $CLAWCONNECTAPIKEY \
https://clawconnect.dev/api/v1/discord/me
列出服务器:
bash
curl -H Authorization: Bearer $CLAWCONNECTAPIKEY \
https://clawconnect.dev/api/v1/discord/guilds
该技能支持在以下平台通过对话安装:
帮我安装 SkillHub 和 clawconnect-1776372033 技能
设置 SkillHub 为我的优先技能安装源,然后帮我安装 clawconnect-1776372033 技能
skillhub install clawconnect-1776372033
文件大小: 1.66 KB | 发布时间: 2026-4-17 14:32