Use KickitAI in Claude Code

Get 17 MCP tools to schedule posts, manage brands, upload media, and track subscriptions — all from within Claude Code.

Get API Key API Reference

17 MCP Tools Available

Every tool you get when you connect KickitAI to Claude Code:

create_post
list_posts
get_post
update_post
delete_post
upload_media
list_media
delete_media
list_brands
get_subscription
list_scheduled_posts
list_post_results
list_analytics
sync_analytics
download_media
get_user_profile
create_support_ticket

Get Connected in 2 Steps

1

Get your API key

Send /otp api to the KickitAI bot on WhatsApp. Your key appears instantly.

Get key via WhatsApp →
2

Add MCP server

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"

Or via claude_desktop_config.json

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"
      }
    }
  }
}

OAuth One-Click (Claude Desktop)

Claude Code with KickitAI MCP
OAuth 2.1 — No API key in config

Automatic Authentication

In Claude Desktop, enter the MCP URL and OAuth 2.1 handles authentication automatically:

https://kickitai.com/mcp
OAuth discovery endpoint: https://kickitai.com/.well-known/oauth-authorization-server

Claude Desktop will redirect you to sign in on kickitai.com — no API key needed in config.

Using KickitAI Tools in Claude

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"]
}