Pricing, limits, and integration
The API comes with your Kit account with no separate fee. The MCP server needs a paid plan (Creator or Creator Pro) and is limited to 120 requests per minute per token; write operations prompt for confirmation in the client before executing.
For agent builds, budget around the rate limit rather than credits: unlike metered data APIs there is no per-call cost, so continuous automation is economical once you are on a paid plan.
How much does the Kit API actually cost?
Kit publishes an API, but per-tier gating wasn't extracted automatically.
- Most likely scenario: API access is either included in all paid plans, or it's gated to higher tiers and we need to verify on the live docs page.
- Until verified, treat the question "which plan unlocks the API" as open. Don't budget on the assumption it's free with the cheapest paid plan.
API at a glance
Which AI clients can read Kit data?
Not every AI assistant supports MCP natively. Here's the per-client picture for Kit specifically.
| Client | Support | Notes |
|---|---|---|
| Claude (Desktop/Web) | Native MCP | Add app.kit.com/mcp as a custom connector; OAuth sign-in to your Kit account, no API key needed. |
| ChatGPT | Native MCP | Explicitly supported by Kit's official MCP docs; connect via the same OAuth flow. |
| Claude Code | Native MCP | claude mcp add --transport http kit https://app.kit.com/mcp. The separate Developer Docs MCP (developers.kit.com/mcp) is built for coding agents. |
| Cursor | Native MCP | Official Kit setup guide at developers.kit.com/mcp; add app.kit.com/mcp as an MCP server, OAuth sign-in to your Kit account, no API key. |
| Windsurf | Native MCP | Covered by Kit's official MCP setup guides; connect app.kit.com/mcp via the OAuth flow. |
| Cline | Native MCP | Covered by Kit's official MCP setup guides; connect app.kit.com/mcp via the OAuth flow. |
| Gemini | Native MCP | Listed as a supported client on kit.com/ai/mcp; connect via the same OAuth flow, no API key needed. |
Kit also has an MCP server
If you're wiring Kit into Claude / Cursor / Codex, the MCP server is usually less code than the REST API.
See Kit MCP pageWhat you can build with the Kit API
Three personas, three different shapes of build. Pick the row that matches how you actually ship.
Glue Kit into your daily workflow
- Pull a digest of fresh activity into your morning Slack
- Trigger a one-off backfill when something looks off
- Pipe data into your own SQLite for ad-hoc queries
Sell Kit reporting at scale
- White-label Kit data into client-branded dashboards
- Run scheduled multi-account reports without logging into the Kit UI
- Cross-reference with the rest of the client's stack (CRM, analytics, ad spend)
Production pipelines for Kit
- Real-time sync into your warehouse via webhooks
- Custom alerts the dashboard's built-in alerting can't express
- Backfill + idempotency handling for Kit data older than the dashboard exposes
Quickstart template
# Starter template — endpoint paths and SDK package names come from # the Kit API docs: https://developers.kit.com curl -X GET "https://developers.kit.com/<your-endpoint>" \ -H "Authorization: Bearer $TOKEN" \ -H "Accept: application/json" | jq .
Template only. Endpoint paths, exact base URL, and auth header format come from developers.kit.com.
Limits and gotchas
- No OpenAPI spec — you write typed clients by hand or use a third-party generator on the docs HTML.
- Webhooks available — react to Kit events in real time instead of polling.
- No official SDK detected. Plan on hitting the API directly with your HTTP client of choice.
- Rate limits: always read the docs page before scaling — the published limit is usually lower than the practical one and overages can be expensive.
- No-code fallback: Zapier and Make.com cover the common triggers if you want to skip writing API code for simple flows.
Agent-readiness verdict
A clean, well-documented v4 REST API with OAuth and API-key auth, webhooks, bulk endpoints and agent-readable llms.txt docs. It scores a 7 out of 10: everything an integration needs is there, but no public OpenAPI spec and no official SDKs means more hand-rolled client code than the best-in-class APIs.
Official MCP at app.kit.com/mcp verified 2026-07-07: OAuth, full v4 surface incl. writes w/ safety annotations, ChatGPT+Claude+Cursor, paid plans, 120rpm. Second Developer Docs MCP at developers.kit.com/mcp. llms.txt live. Score 7->8 (Joonas approved).
Kit API FAQ
Does Kit have a public API?+
Does Kit support webhooks?+
Should I use the API or the MCP server for Claude / Cursor / Codex?+
Sources
- Kit official site: https://kit.com/
- API docs: https://developers.kit.com
- MCP server: https://app.kit.com/mcp
10+ years in digital marketing. I review marketing software for AI-stack fit: real pricing, MCP and API support, and how cleanly each tool drops into an AI agent workflow, cross-checked against verified data and real user feedback.

