Get 17 MCP tools to schedule posts, manage brands, upload media, and track subscriptions — all from within Claude Code.
Every tool you get when you connect KickitAI to Claude Code:
Send /otp api to the KickitAI bot on WhatsApp. Your key appears instantly.
Run this in your terminal to add KickitAI as an MCP server in Claude Code:
claude mcp add kickitai https://kickitai.com/mcp \
--header "Authorization: Bearer kk_live_YOUR_KEY"
Add this to your claude_desktop_config.json to configure manually:
{
"mcpServers": {
"kickitai": {
"url": "https://kickitai.com/mcp",
"headers": {
"Authorization": "Bearer kk_live_YOUR_KEY"
}
}
}
}
In Claude Desktop, enter the MCP URL and OAuth 2.1 handles authentication automatically:
Once connected, you can use KickitAI tools directly in your Claude Code conversations:
// Claude using create_post tool:
{
"tool": "create_post",
"input": {
"brandId": "brand_abc123",
"caption": "Exciting news! Our new product launches tomorrow. Stay tuned! 🚀",
"platforms": ["instagram", "facebook"],
"scheduledAt": "2026-05-01T10:00:00Z"
}
}
// Response:
{
"postId": "post_xyz789",
"status": "scheduled",
"scheduledAt": "2026-05-01T10:00:00Z",
"platforms": ["instagram", "facebook"]
}