clawconnectClawConnect - Universal account connector for AI agents. Send tweets, read/send Gmail, manage calendar, send Slack messages, and more through one API.
Install via ClawdBot CLI:
clawdbot install yiweil/clawconnectUniversal account connector for AI agents. One API to access Gmail, Calendar, Twitter, Slack, and Discord.
Authorization: Bearer Base URL: https://clawconnect.dev
List connected accounts:
curl -H "Authorization: Bearer $CLAWCONNECT_API_KEY" \
https://clawconnect.dev/api/v1/connections
Get your Twitter profile:
curl -H "Authorization: Bearer $CLAWCONNECT_API_KEY" \
https://clawconnect.dev/api/v1/twitter/me
Get timeline:
curl -H "Authorization: Bearer $CLAWCONNECT_API_KEY" \
https://clawconnect.dev/api/v1/twitter/timeline
Post a tweet:
curl -X POST -H "Authorization: Bearer $CLAWCONNECT_API_KEY" \
-H "Content-Type: application/json" \
-d '{"text": "Hello from ClawConnect!"}' \
https://clawconnect.dev/api/v1/twitter/tweet
List emails (with optional search query and max results):
curl -H "Authorization: Bearer $CLAWCONNECT_API_KEY" \
"https://clawconnect.dev/api/v1/gmail/messages?q=is:unread&maxResults=10"
Get email by ID:
curl -H "Authorization: Bearer $CLAWCONNECT_API_KEY" \
https://clawconnect.dev/api/v1/gmail/messages/MESSAGE_ID
Send email:
curl -X POST -H "Authorization: Bearer $CLAWCONNECT_API_KEY" \
-H "Content-Type: application/json" \
-d '{"to": "recipient@example.com", "subject": "Hello", "body": "Email body here"}' \
https://clawconnect.dev/api/v1/gmail/send
List events (with optional time range and max results):
curl -H "Authorization: Bearer $CLAWCONNECT_API_KEY" \
"https://clawconnect.dev/api/v1/calendar/events?timeMin=2025-01-01T00:00:00Z&timeMax=2025-01-31T23:59:59Z&maxResults=20"
List workspace users:
curl -H "Authorization: Bearer $CLAWCONNECT_API_KEY" \
https://clawconnect.dev/api/v1/slack/users
List channels:
curl -H "Authorization: Bearer $CLAWCONNECT_API_KEY" \
https://clawconnect.dev/api/v1/slack/channels
Get your Slack profile:
curl -H "Authorization: Bearer $CLAWCONNECT_API_KEY" \
https://clawconnect.dev/api/v1/slack/profile
Send a message (channel can be a channel ID or user ID):
curl -X POST -H "Authorization: Bearer $CLAWCONNECT_API_KEY" \
-H "Content-Type: application/json" \
-d '{"channel": "C01234ABCDE", "text": "Hello!"}' \
https://clawconnect.dev/api/v1/slack/send
Get your Discord profile:
curl -H "Authorization: Bearer $CLAWCONNECT_API_KEY" \
https://clawconnect.dev/api/v1/discord/me
List guilds (servers):
curl -H "Authorization: Bearer $CLAWCONNECT_API_KEY" \
https://clawconnect.dev/api/v1/discord/guilds
q parameter on Gmail to filter (same syntax as Gmail search).timeMin/timeMax accept ISO 8601 timestamps.connection_id to target a specific connection.Generated Mar 1, 2026
A small business owner uses ClawConnect to schedule and post tweets promoting products, while also monitoring Gmail for customer inquiries and sending responses. This streamlines their online presence management without needing separate tools for each platform.
A busy professional integrates ClawConnect to manage their calendar events, send Slack messages to team members, and read unread Gmail emails in one interface. This helps them stay organized and communicate efficiently across work platforms.
A content creator leverages ClawConnect to post tweets about new videos, send email newsletters to subscribers via Gmail, and coordinate with collaborators on Slack. This automates repetitive tasks, freeing up time for creative work.
A non-profit organization uses ClawConnect to send updates via Twitter, manage event schedules on Calendar, and communicate with volunteers through Slack. This enhances their outreach and coordination efforts across multiple channels.
Offer a free tier with limited API calls and basic features like reading emails and tweets, then charge for advanced capabilities such as sending messages, higher usage limits, and priority support. This attracts users with low barriers to entry and monetizes power users.
Provide customized packages for large organizations needing integration with multiple platforms like Gmail, Slack, and Calendar. Include features such as enhanced security, dedicated support, and bulk operations, sold through annual contracts.
Monetize the API directly by charging developers based on the number of API calls or data volume processed. Offer tiered pricing plans that scale with usage, targeting tech companies and developers building integrated applications.
💬 Integration Tip
Start by connecting one account, such as Gmail, to test basic functionality before adding more platforms. Use the connections endpoint to verify linked accounts and ensure proper authorization headers in all API requests.
Captures learnings, errors, and corrections to enable continuous improvement. Use when: (1) A command or operation fails unexpectedly, (2) User corrects Clau...
Helps users discover and install agent skills when they ask questions like "how do I do X", "find a skill for X", "is there a skill that can...", or express interest in extending capabilities. This skill should be used when the user is looking for functionality that might exist as an installable skill.
Search and analyze your own session logs (older/parent conversations) using jq.
Typed knowledge graph for structured agent memory and composable skills. Use when creating/querying entities (Person, Project, Task, Event, Document), linking related objects, enforcing constraints, planning multi-step actions as graph transformations, or when skills need to share state. Trigger on "remember", "what do I know about", "link X to Y", "show dependencies", entity CRUD, or cross-skill data access.
Ultimate AI agent memory system for Cursor, Claude, ChatGPT & Copilot. WAL protocol + vector search + git-notes + cloud backup. Never lose context again. Vibe-coding ready.
Headless browser automation CLI optimized for AI agents with accessibility tree snapshots and ref-based element selection