clawemail-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/clawemail-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
A startup developing AI agents needs dedicated email accounts for each agent to send and receive emails, manage calendars, and access Google Docs. This skill allows them to quickly provision @clawemail.com accounts with OAuth credentials for programmatic integration, ensuring secure and scalable email management.
A customer support company uses AI agents to handle email inquiries and schedule follow-ups via Google Calendar. This skill enables them to create and manage email accounts for these agents, providing a professional @clawemail.com address and full Google Workspace access for seamless automation and data handling.
A marketing agency runs email campaigns using AI agents to personalize outreach and track responses. This skill helps them set up dedicated email accounts for each campaign, allowing agents to use Gmail and Google Sheets for analytics, with OAuth for automated email sending and reporting.
An online education platform deploys AI tutors that communicate with students via email and share learning materials through Google Drive. This skill facilitates the creation of email accounts for tutors, providing a branded @clawemail.com address and access to Google Workspace tools for collaborative learning.
A freelancer uses AI agents to manage multiple client projects, coordinating emails, documents, and schedules. This skill allows them to provision email accounts for each agent, ensuring organized communication with clients through Gmail and collaboration via Google Docs and Calendar.
Offer tiered API subscriptions for developers and businesses to provision and manage @clawemail.com accounts. Revenue comes from monthly or annual fees based on usage limits, such as number of accounts created or API calls, with premium tiers for advanced features like higher quotas and priority support.
Provide a direct signup option for users to create accounts via a Stripe checkout page without needing an API key. Revenue is generated through one-time or recurring payments for email accounts, with options like monthly ($16) or annual ($160) plans, targeting individual users or small teams.
Sell enterprise licenses to large organizations for bulk email account management, including white-label options to rebrand the service. Revenue comes from custom contracts, setup fees, and ongoing support, catering to businesses that need scalable, secure email provisioning for multiple AI agents or employees.
💬 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).