One dashboard. Every platform. Scheduled from your phone.
Simple to use, fairly priced — with real human support.
Three steps to connect any AI agent to KickitAI's social media scheduling platform
Send /otp api on WhatsApp to the KickitAI bot. Your keys appear as individual messages — long-press to copy.
Add the MCP server URL to your agent config. Claude Desktop uses OAuth automatically — no key needed in config.
Schedule posts, manage brands, track analytics, and upload media — all from within your AI agent.
/otp api to the KickitAI bot on WhatsApp — your API key arrives in seconds.
Add KickitAI as an MCP server in Claude Code to schedule social posts directly from your terminal.
Add KickitAI as an MCP server using the CLI or by editing your config JSON:
claude mcp add kickitai --transport http --header "Authorization: Bearer kk_live_YOUR_API_KEY" https://kickitai.com/mcp
Or manually add to your Claude Code MCP config:
{
"kickitai": {
"url": "https://kickitai.com/mcp",
"headers": {
"Authorization": "Bearer kk_live_YOUR_API_KEY"
}
}
}
kk_live_ API key. Get yours on WhatsApp — then run one command to connect.
One-click connect via OAuth 2.1 — just enter the MCP URL in Claude Desktop settings and authenticate.
Or add to claude_desktop_config.json:
{
"mcpServers": {
"kickitai": {
"url": "https://kickitai.com/mcp"
}
}
}
https://kickitai.com/mcp into Claude Desktop → Settings → MCP. No API key needed.
KickitAI's Support Bot is powered by OpenClaw/GoClaw — already connected via WhatsApp.
DM our support bot on WhatsApp to activate support notifications and get help with your account:
Developers can integrate via the OpenClaw-compatible endpoint:
POST https://kickitai.com/api/openclaw/v1/chat/completions
Use KickitAI's REST API directly with OpenAI Codex or any HTTP client.
Base URL: https://kickitai.com/api/v1
Authorization: Bearer kk_live_YOUR_API_KEY
curl https://kickitai.com/api/v1/me \
-H "Authorization: Bearer kk_live_YOUR_API_KEY"
Full interactive docs at /reference
/otp api on WhatsApp — then authenticate any OpenAI-compatible HTTP client.
Every tool available when you connect KickitAI to an AI agent:
| Tool | Auth | Description |
|---|---|---|
| download_media | Any | Download social URL → R2 CDN |
| get_user_profile | Any | Lookup user by phone → profile + subscription |
| list_brands | User key | List your brands |
| list_scheduled_posts | User key | List scheduled posts (with optional brandId filter) |
| get_subscription | User key | Subscription status and usage percentage |
| create_support_ticket | User key | Create a support ticket |
| create_post | User key | Schedule a new post (min +5min future) |
| get_post | User key | Get a specific post by ID |
| update_post | User key | Update a scheduled post |
| delete_post | User key | Delete a scheduled/draft post |
| list_posts | User key | List posts with status/platform/brand filters |
| list_post_results | User key | List publish results for posts |
| list_analytics | User key | Published posts with metrics |
| sync_analytics | User key | Trigger analytics sync |
| upload_media | User key | Upload media from URL or base64 |
| list_media | User key | List your uploaded media |
| delete_media | User key | Delete uploaded media from R2 |