API gateway with managed auth. Connect your AI to Google Workspace, GitHub, HubSpot, Slack, Notion, Trello, and 20+ more services with a single API key.
- Create an account at https://integraclaw.dev/register
- Create an API key at https://integraclaw.dev/dashboard/api-keys
- Set your API key:
export INTEGRACLAW_API_KEY="ic_YOUR_KEY_HERE"- Connect services at https://integraclaw.dev/dashboard/connections — click "+ Connect" on any Google service, authorize via OAuth popup.
See SKILL.md for the full setup guide with verification steps.
# List available connections
curl -s "https://integraclaw.dev/api/v1/connections" \
-H "Authorization: Bearer $INTEGRACLAW_API_KEY"
# Call an action (see references/ for params)
curl -s -X POST "https://integraclaw.dev/api/v1/action" \
-H "Authorization: Bearer $INTEGRACLAW_API_KEY" \
-H "Content-Type: application/json" \
-d '{"provider":"google","service":"gmail","action":"send_email","params":{"to":"user@example.com","subject":"Hello!","body":"Sent via Integraclaw"}}'- Users connect services through the Integraclaw dashboard (OAuth)
- Agent lists connections —
GET /api/v1/connections - Agent calls actions —
POST /api/v1/action(see references/ for each service)
The agent never manages OAuth, tokens, or connection setup. Integraclaw handles all token management automatically.
Google Workspace: Gmail, Calendar, Drive, Sheets, Docs, Slides, Forms, Tasks, Contacts, Meet, YouTube, Search Console, Analytics Admin, Analytics Data, Ads, Play, Workspace Admin.
GitHub, HubSpot, Slack, Notion, Trello, and more.
See SKILL.md for the full table with app names and actions, and references/ for detailed action guides per service.
MIT