# Kit

```json
{
  "name": "Kit",
  "slug": "kit",
  "url": "https://composio.dev/toolkits/kit",
  "markdown_url": "https://composio.dev/toolkits/kit.md",
  "logo_url": "https://logos.composio.dev/api/kit",
  "categories": [
    "marketing & social media"
  ],
  "is_composio_managed": true,
  "updated_at": "2026-05-06T08:17:38.685Z"
}
```

![Kit logo](https://logos.composio.dev/api/kit)

## Description

Securely connect your AI agents and chatbots (Claude, ChatGPT, Cursor, etc) with Kit MCP or direct API to automate tasks, send emails, read and update app data, and manage Kit workflows through natural language.

## Summary

Kit is a platform for creators and developers to automate tasks and publish apps on the Kit App Store. It helps streamline workflows so you can focus on what matters most.

## Categories

- marketing & social media

## Toolkit Details

- Tools: 29
- Managed auth: Managed by Composio

## Images

- Logo: https://logos.composio.dev/api/kit

## Authentication

- **Oauth2**
  - Type: `oauth2`
  - Description: Oauth2 authentication for Kit.
  - Setup:
    - Configure Oauth2 credentials for Kit.
    - Use the credentials when creating an auth config in Composio.
- **Api Key**
  - Type: `api_key`
  - Description: Api Key authentication for Kit.
  - Setup:
    - Configure Api Key credentials for Kit.
    - Use the credentials when creating an auth config in Composio.

## Suggested Prompts

- Add new subscriber to my welcome form
- Create a custom field for subscriber notes
- Delete an outdated broadcast by its ID
- Create a tag called 'VIP' for top customers

## Supported Tools

| Tool slug | Name | Description |
|---|---|---|
| `KIT_ADD_SUBSCRIBER_TO_FORM` | Add Subscriber to Form | Tool to add a subscriber to a specific form by id. use after confirming form and subscriber ids. |
| `KIT_CREATE_CUSTOM_FIELD` | Create Custom Field | Tool to create a new custom field for subscriber data. use when you need to store extra attributes for subscribers. |
| `KIT_CREATE_TAG` | Create Tag | Tool to create a new tag in the account. use when you need a custom label to segment subscribers. use after confirming tag uniqueness to avoid duplicates. example: "create a tag called 'vip' for premium customers." |
| `KIT_CREATE_WEBHOOK` | Create Webhook | Tool to create a new webhook subscription. use when you need subscriber or purchase event notifications. |
| `KIT_DELETE_BROADCAST` | Delete Broadcast | Tool to delete a specific broadcast. use when you need to permanently remove a broadcast by id (after confirming the id). example prompt: "delete broadcast with id 123" |
| `KIT_DELETE_CUSTOM_FIELD` | Delete Custom Field | Tool to delete a specific custom field. use after confirming the custom field id is correct. deletes the field permanently. |
| `KIT_DELETE_SUBSCRIBER` | Delete Subscriber | Tool to delete (unsubscribe) a subscriber by id. use when you need to remove a subscriber from all sequences and forms after confirming the subscriber exists. |
| `KIT_DELETE_TAG` | Delete Tag | Tool to delete a tag by id. use when you need to remove obsolete or incorrect tags after confirming the tag exists. |
| `KIT_DELETE_WEBHOOK` | Delete Webhook | Tool to delete a webhook by id. use when you want to permanently remove a webhook after confirming its id. |
| `KIT_GET_ACCOUNT` | Get Account | Tool to retrieve current account information. use after validating api key to fetch account id, plan type, primary email, and timezone details. |
| `KIT_GET_ACCOUNT_COLORS` | Get Account Colors | Tool to retrieve list of colors associated with the account. use after confirming authentication to fetch account-specific color palette. |
| `KIT_GET_BROADCAST` | Get Broadcast | Tool to retrieve details of a specific broadcast by id. use when you have a valid broadcast id and need its metadata. |
| `KIT_GET_BROADCAST_STATS` | Get Broadcast Stats | Tool to retrieve statistics for a specific broadcast by id. use after a broadcast has been sent to monitor performance. |
| `KIT_GET_CREATOR_PROFILE` | Get Creator Profile | Tool to retrieve the creator profile information for the account. use when you need creator metadata (bio, avatar, social links) before publishing or customizing content. |
| `KIT_GET_EMAIL_STATS` | Get Email Stats | Tool to retrieve email statistics for the account. use after confirming authentication to fetch metrics on emails (sent, opened, clicked) over the last 90 days. |
| `KIT_LIST_BROADCASTS` | List Broadcasts | Tool to retrieve a paginated list of all broadcasts. use when you need to enumerate or review broadcast summaries with cursor-based pagination. |
| `KIT_LIST_CUSTOM_FIELDS` | List Custom Fields | Tool to retrieve a paginated list of custom fields. use after confirming you need to enumerate or inspect all custom fields with cursor-based pagination. |
| `KIT_LIST_FORMS` | List Forms | Tool to list all forms. use when you need to fetch forms with optional filters and pagination. |
| `KIT_LIST_SEGMENTS` | List Segments | Tool to retrieve a paginated list of segments. use when you need to enumerate segments with cursor-based pagination for further processing or display. |
| `KIT_LIST_SEQUENCES` | List Sequences | Tool to retrieve a paginated list of all sequences. use when you need to enumerate sequences with pagination for further processing or display. |
| `KIT_LIST_SUBSCRIBERS` | List Subscribers | Tool to retrieve a list of subscribers. use when you need to fetch subscriber records with optional filtering, sorting, and pagination. |
| `KIT_LIST_SUBSCRIBERS_FOR_FORM` | List Subscribers For Form | Tool to retrieve subscribers for a specific form by id. use when you need to page or filter subscribers of a form. |
| `KIT_LIST_TAGS` | List Tags | Tool to retrieve a list of all tags. use when you need a complete inventory of tags for the kit account. |
| `KIT_LIST_TAG_SUBSCRIBERS` | List Tag Subscribers | Tool to retrieve subscribers for a specific tag. use after confirming the tag id when you need to list subscribers associated with a tag. |
| `KIT_TAG_SUBSCRIBER` | Tag Subscriber | Tool to associate a subscriber with a specific tag by id. use after confirming tag and subscriber ids when tagging a subscriber. |
| `KIT_TAG_SUBSCRIBER_BY_EMAIL` | Tag Subscriber by Email | Tool to associate a subscriber with a tag using an email address. use when you have a tag id and subscriber email ready. use after confirming both resources exist. |
| `KIT_UPDATE_ACCOUNT_COLORS` | Update Account Colors | Tool to update the list of colors for the account. use when customizing your kit account's color palette for broadcasts and templates. |
| `KIT_UPDATE_CUSTOM_FIELD` | Update Custom Field | Tool to update a custom field's label. use after listing or retrieving custom fields and confirming the field id to rename. |
| `KIT_UPDATE_TAG` | Update Tag | Tool to update a tag's name by id. use after retrieving tag id and confirming the new name. |

## Supported Triggers

None listed.

## Installation and MCP Setup

### Path 1: SDK Installation

#### Path 1, Step 1: Install Composio

Install the Composio SDK
```python
pip install composio_openai
```

```typescript
npm install @composio/openai
```

#### Path 1, Step 2: Initialize Composio and Create Tool Router Session

Import and initialize Composio client, then create a Tool Router session
```python
from openai import OpenAI
from composio import Composio
from composio_openai import OpenAIResponsesProvider

composio = Composio(provider=OpenAIResponsesProvider())
openai = OpenAI()
session = composio.create(user_id='your-user-id')
```

```typescript
import OpenAI from 'openai';
import { Composio } from '@composio/core';
import { OpenAIResponsesProvider } from '@composio/openai';

const composio = new Composio({
  provider: new OpenAIResponsesProvider(),
});
const openai = new OpenAI({});
const session = await composio.create('your-user-id');
```

#### Path 1, Step 3: Execute Kit Tools via Tool Router with Your Agent

Get tools from Tool Router session and execute Kit actions with your Agent
```python
tools = session.tools
response = openai.responses.create(
  model='gpt-4.1',
  tools=tools,
  input=[{
    'role': 'user',
    'content': 'Add a new subscriber to form ID 12345 with custom field "interests" set to "photography"'
  }]
)
result = composio.provider.handle_tool_calls(
  response=response,
  user_id='your-user-id'
)
print(result)
```

```typescript
const tools = session.tools;
const response = await openai.responses.create({
  model: 'gpt-4.1',
  tools: tools,
  input: [{
    role: 'user',
    content: 'Add a new subscriber to form ID 12345 with custom field "interests" set to "photography"'
  }],
});
const result = await composio.provider.handleToolCalls(
  'your-user-id',
  response.output
);
console.log(result);
```

### Path 2: MCP Server Setup

#### Path 2, Step 1: Install Composio

Install the Composio SDK and Claude Agent SDK
```python
pip install composio claude-agent-sdk
```

```typescript
npm install @composio/core ai @ai-sdk/openai @ai-sdk/mcp
```

#### Path 2, Step 2: Create Tool Router Session

Initialize the Composio client and create a Tool Router session
```python
from composio import Composio
from claude_agent_sdk import ClaudeSDKClient, ClaudeAgentOptions

composio = Composio(api_key='your-composio-api-key')
session = composio.create(user_id='your-user-id')
url = session.mcp.url
```

```typescript
import { Composio } from '@composio/core';

const composio = new Composio({ apiKey: 'your-api-key' });

console.log("Creating Tool Router session...");
const { mcp } = await composio.create('your-user-id');
console.log(`Tool Router session created: ${mcp.url}`);
```

#### Path 2, Step 3: Connect to AI Agent

Use the MCP server with your AI agent
```python
import asyncio

options = ClaudeAgentOptions(
    permission_mode='bypassPermissions',
    mcp_servers={
        'tool_router': {
            'type': 'http',
            'url': url,
            'headers': {
                'x-api-key': 'your-composio-api-key'
            }
        }
    },
    system_prompt='You are a helpful assistant with access to Kit tools.',
    max_turns=10
)

async def main():
    async with ClaudeSDKClient(options=options) as client:
        await client.query('Add a subscriber to form with id 12345 and email john@doe.com')
        async for message in client.receive_response():
            if hasattr(message, 'content'):
                for block in message.content:
                    if hasattr(block, 'text'):
                        print(block.text)

asyncio.run(main())
```

```typescript
import { openai } from '@ai-sdk/openai';
import { experimental_createMCPClient as createMCPClient } from '@ai-sdk/mcp';
import { generateText, stepCountIs } from 'ai';

const client = await createMCPClient({
  transport: {
    type: 'http',
    url: mcp.url,
    headers: { 'x-api-key': 'your-composio-api-key' }
  }
});

const tools = await client.tools();

const { text } = await generateText({
  model: openai('gpt-4o'),
  tools,
  messages: [{ role: 'user', content: 'Add a subscriber to form with id 12345 and email john@doe.com' }],
  stopWhen: stepCountIs( 5 )
});

console.log(`Agent: ${text}`);
```

## Why Use Composio?

### 1. AI Native Kit Integration

- Supports both Kit MCP and direct API based integrations
- Structured, LLM-friendly schemas for reliable tool execution
- Rich coverage for reading, writing, and querying your Kit data

### 2. Managed Auth

- Built-in OAuth handling with automatic token refresh and rotation
- Central place to manage, scope, and revoke Kit access
- Per user and per environment credentials instead of hard-coded keys

### 3. Agent Optimized Design

- Tools are tuned using real error and success rates to improve reliability over time
- Comprehensive execution logs so you always know what ran, when, and on whose behalf

### 4. Enterprise Grade Security

- Fine-grained RBAC so you control which agents and users can access Kit
- Scoped, least privilege access to Kit resources
- Full audit trail of agent actions to support review and compliance

## Use Kit with any AI Agent Framework

Choose a framework you want to connect Kit with:

- [OpenAI Agents SDK](https://composio.dev/toolkits/kit/framework/open-ai-agents-sdk)
- [Claude Agent SDK](https://composio.dev/toolkits/kit/framework/claude-agents-sdk)
- [Claude Code](https://composio.dev/toolkits/kit/framework/claude-code)
- [Claude Cowork](https://composio.dev/toolkits/kit/framework/claude-cowork)
- [Codex](https://composio.dev/toolkits/kit/framework/codex)
- [OpenClaw](https://composio.dev/toolkits/kit/framework/openclaw)
- [Hermes](https://composio.dev/toolkits/kit/framework/hermes-agent)
- [Google ADK](https://composio.dev/toolkits/kit/framework/google-adk)
- [LangChain](https://composio.dev/toolkits/kit/framework/langchain)
- [Vercel AI SDK](https://composio.dev/toolkits/kit/framework/ai-sdk)
- [Mastra AI](https://composio.dev/toolkits/kit/framework/mastra-ai)
- [LlamaIndex](https://composio.dev/toolkits/kit/framework/llama-index)
- [CrewAI](https://composio.dev/toolkits/kit/framework/crew-ai)
- [Pydantic AI](https://composio.dev/toolkits/kit/framework/pydantic-ai)
- [AutoGen](https://composio.dev/toolkits/kit/framework/autogen)

## Related Toolkits

- [Reddit](https://composio.dev/toolkits/reddit) - Reddit is a social news platform with thriving user-driven communities (subreddits). It's the go-to place for discussion, content sharing, and viral marketing.
- [Facebook](https://composio.dev/toolkits/facebook) - Facebook is a social media and advertising platform for businesses and creators. It helps you connect, share, and manage content across your public Facebook Pages.
- [Linkedin](https://composio.dev/toolkits/linkedin) - LinkedIn is a professional networking platform for connecting, sharing content, and engaging with business opportunities. It's the go-to place for building your professional brand and unlocking new career connections.
- [Active campaign](https://composio.dev/toolkits/active_campaign) - ActiveCampaign is a marketing automation and CRM platform for managing email campaigns, sales pipelines, and customer segmentation. It helps businesses engage customers and drive growth through smart automation and targeted outreach.
- [ActiveTrail](https://composio.dev/toolkits/active_trail) - ActiveTrail is a user-friendly email marketing and automation platform. It helps you reach subscribers and automate campaigns with ease.
- [Ahrefs](https://composio.dev/toolkits/ahrefs) - Ahrefs is an SEO and marketing platform for site audits, keyword research, and competitor insights. It helps you improve search rankings and drive organic traffic.
- [Amcards](https://composio.dev/toolkits/amcards) - AMCards lets you create and mail personalized greeting cards online. Build stronger customer relationships with easy, automated card campaigns.
- [Beamer](https://composio.dev/toolkits/beamer) - Beamer is a news and changelog platform for in-app announcements and feature updates. It helps companies boost user engagement by sharing news where users are most active.
- [Benchmark email](https://composio.dev/toolkits/benchmark_email) - Benchmark Email is a platform for creating, sending, and tracking email campaigns. It's built to help you engage audiences and analyze results—all in one place.
- [Bigmailer](https://composio.dev/toolkits/bigmailer) - BigMailer is an email marketing platform for managing multiple brands with white-labeling and automation. It helps teams streamline campaigns and simplify integration with Amazon SES.
- [Brandfetch](https://composio.dev/toolkits/brandfetch) - Brandfetch is an API that delivers company logos, colors, and visual branding assets. It helps marketers and developers keep brand visuals consistent everywhere.
- [Brevo](https://composio.dev/toolkits/brevo) - Brevo is an all-in-one email and SMS marketing platform for transactional messaging, automation, and CRM. It helps businesses engage customers and streamline communications through powerful campaign tools.
- [Campayn](https://composio.dev/toolkits/campayn) - Campayn is an email marketing platform for creating, sending, and managing campaigns. It helps businesses engage contacts and grow audiences with easy-to-use tools.
- [Cardly](https://composio.dev/toolkits/cardly) - Cardly is a platform for creating and sending personalized direct mail to customers. It helps businesses break through the digital clutter by getting real engagement via physical mailboxes.
- [ClickSend](https://composio.dev/toolkits/clicksend) - ClickSend is a cloud-based SMS and email marketing platform for businesses. It streamlines communication by enabling quick message delivery and contact management.
- [Crustdata](https://composio.dev/toolkits/crustdata) - CrustData is an AI-powered data intelligence platform for real-time company and people data. It helps B2B sales teams, AI SDRs, and investors react to live business signals.
- [Curated](https://composio.dev/toolkits/curated) - Curated is a platform for collecting, curating, and publishing newsletters. It streamlines content aggregation and distribution for creators and teams.
- [Customerio](https://composio.dev/toolkits/customerio) - Customer.io is a customer engagement platform for targeted messaging across email, SMS, and push. Easily automate, segment, and track communications with your audience.
- [Cutt ly](https://composio.dev/toolkits/cutt_ly) - Cutt.ly is a URL shortening service for managing and analyzing links. Streamline your workflows with quick, trackable, and branded short URLs.
- [Demio](https://composio.dev/toolkits/demio) - Demio is webinar software built for marketers, offering both live and automated sessions with interactive features. It helps teams engage audiences and optimize lead generation through detailed analytics.

## Frequently Asked Questions

### Do I need my own developer credentials to use Kit with Composio?

No, you can get started immediately using Composio's built-in Kit app. For production, we recommend configuring your own OAuth credentials.

### Can I use multiple toolkits together?

Yes! Composio's Tool Router enables agents to use multiple toolkits. [Learn more](https://docs.composio.dev/tool-router/overview).

### Is Composio secure?

Composio is SOC 2 and ISO 27001 compliant with all data encrypted in transit and at rest. [Learn more](https://trust.composio.dev).

### What if the API changes?

Composio maintains and updates all toolkit integrations automatically, so your agents always work with the latest API versions.

---
[See all toolkits](https://composio.dev/toolkits) · [Composio docs](https://docs.composio.dev/llms.txt)
