claw-adminProvision and manage @clawemail.com Google Workspace email accounts. Use when the user wants to create an email for their AI agent, check email availability, or manage existing ClawEmail accounts.
Install via ClawdBot CLI:
clawdbot install cto1/claw-adminProvision and manage @clawemail.com Google Workspace email accounts for AI agents. Each account comes with full Gmail, Docs, Sheets, Calendar, and Drive access plus OAuth credentials for programmatic use.
Set your API key as an environment variable:
export CLAWEMAIL_API_KEY=your_api_key_here
Base URL: https://clawemail.com
All admin endpoints require the header: -H "X-API-Key: $CLAWEMAIL_API_KEY"
Before creating an account, always check if the prefix is available:
curl -s https://clawemail.com/check/DESIRED_PREFIX
Response when available:
{"prefix":"tom","email":"tom@clawemail.com","available":true}
Response when taken or reserved:
{"available":false,"errors":["This email is reserved"]}
Provisions a new @clawemail.com Google Workspace user. Returns a temporary password and an OAuth connect URL.
curl -s -X POST https://clawemail.com/api/emails \
-H "X-API-Key: $CLAWEMAIL_API_KEY" \
-H "Content-Type: application/json" \
-d '{"prefix":"DESIRED_PREFIX"}'
Response:
{
"success": true,
"email": "tom@clawemail.com",
"password": "aB3$xYz...",
"connect_url": "https://clawemail.com/connect/tom",
"instructions": "1. User logs into Gmail with the email/password above. 2. User visits connect_url to authorize OAuth. 3. User receives their OpenClaw credentials."
}
Important: Save the password immediately — it is shown only once.
After creation, the user must:
connect_url to authorize OAuth and receive their credentials JSONcurl -s https://clawemail.com/api/emails \
-H "X-API-Key: $CLAWEMAIL_API_KEY"
Supports pagination with ?limit=100&offset=0.
curl -s https://clawemail.com/api/emails/PREFIX \
-H "X-API-Key: $CLAWEMAIL_API_KEY"
Returns email status, creation date, OAuth connection date, and Workspace user details.
Temporarily disables a Google Workspace account (preserves data):
curl -s -X POST https://clawemail.com/api/emails/PREFIX/suspend \
-H "X-API-Key: $CLAWEMAIL_API_KEY"
Re-enables a previously suspended account:
curl -s -X POST https://clawemail.com/api/emails/PREFIX/unsuspend \
-H "X-API-Key: $CLAWEMAIL_API_KEY"
Permanently deletes the Google Workspace account and all associated data:
curl -s -X DELETE https://clawemail.com/api/emails/PREFIX \
-H "X-API-Key: $CLAWEMAIL_API_KEY"
For users who want to sign up themselves through Stripe checkout:
https://clawemail.com/signup?prefix=DESIRED_PREFIXcurl -s https://clawemail.com/check/myagent/api/emails with the prefixconnect_url from the responseGenerated Mar 1, 2026
When a user wants to create a dedicated email account for their AI agent, such as a chatbot or automation tool, to handle communications and integrate with Google Workspace services. This involves checking prefix availability, creating the account, and guiding the user through OAuth setup for programmatic access.
Freelancers or small agencies can use this to set up professional email accounts for client projects, ensuring secure access to Google Docs, Sheets, and Calendar. It helps manage multiple accounts efficiently, with options to suspend or delete accounts as projects end.
Schools or universities can provision email accounts for students or research AI agents in labs, providing full Google Workspace access for collaboration on assignments and projects. The admin features allow easy management of accounts across semesters.
Startups can quickly onboard new team members by creating clawemail.com accounts for AI tools or employees, integrating with Google services for productivity. This streamlines setup with automated credential generation and OAuth authorization.
Event organizers can set up temporary email accounts for AI assistants to handle registrations, schedules, and communications via Gmail and Calendar. Accounts can be suspended after the event to manage costs and data retention.
Charge businesses a monthly or annual fee for API access to provision and manage clawemail.com accounts, with tiered pricing based on the number of accounts or features. Revenue comes from recurring payments, leveraging the Google Workspace infrastructure.
Offer a direct signup page where users can purchase email accounts via Stripe checkout without API keys, targeting individual developers or small teams. Revenue is generated from one-time or recurring payments, with upsells for additional services like support.
Partner with other companies to resell clawemail.com accounts under their own branding, providing custom domains or bulk discounts. Revenue comes from licensing fees and a percentage of sales, expanding market reach through affiliates.
💬 Integration Tip
Always check email availability first using the public endpoint to avoid errors, and securely store the temporary password from the creation response as it is only shown once.
Google Workspace CLI for Gmail, Calendar, Drive, Contacts, Sheets, and Docs.
Query Google Places API (New) via the goplaces CLI for text search, place details, resolve, and reviews. Use for human-friendly place lookup or JSON output for scripts.
Search for places (restaurants, cafes, etc.) via Google Places API proxy on localhost.
Gmail, Calendar, Drive, Docs, Sheets — NO Google Cloud Console required. Just OAuth sign-in. Zero setup complexity vs traditional Google API integrations.
Google Drive API integration with managed OAuth. List, search, create, and manage files and folders. Use this skill when users want to interact with Google D...
Google Sheets API integration with managed OAuth. Read and write spreadsheet data, create sheets, apply formatting, and manage ranges. Use this skill when users want to read from or write to Google Sheets. For other third party apps, use the api-gateway skill (https://clawhub.ai/byungkyu/api-gateway).