Kick Integration
Manage Kick get users, get channels, get livestreams, get categories, send chat message
The Kick integration provides access to manage Kick get users, get channels, get livestreams, get categories, send chat message through the Integrate MCP server.
Installation
The Kick integration is included with the SDK:
import { kickIntegration } from "integrate-sdk/server";Setup
1. Create a Kick OAuth App
- Create an OAuth application for Kick
- Configure your redirect URI
- Note your Client ID and Client Secret
2. Configure the Integration on Your Server
Add the Kick integration to your server configuration. The integration automatically reads KICK_CLIENT_ID and KICK_CLIENT_SECRET from your environment variables:
import { createMCPServer, kickIntegration } from "integrate-sdk/server";
export const { client: serverClient } = createMCPServer({
apiKey: process.env.INTEGRATE_API_KEY,
integrations: [
kickIntegration({
scopes: ["user:read", "channel:read", "channel:write", "chat:write", "events:subscribe"], // Optional
}),
],
});You can override the environment variables by passing explicit values:
kickIntegration({
clientId: process.env.CUSTOM_KICK_ID,
clientSecret: process.env.CUSTOM_KICK_SECRET,
scopes: ["user:read", "channel:read", "channel:write", "chat:write", "events:subscribe"], // Optional
});3. Client-Side Usage
The default client automatically includes all integrations. You can use it directly:
import { client } from "integrate-sdk";
await client.authorize("kick");
const result = await client.kick.getUsers({});
console.log(result);If you're using a custom client, add the integration to the integrations array:
import { createMCPClient, kickIntegration } from "integrate-sdk";
const customClient = createMCPClient({
integrations: [kickIntegration()],
});Configuration Options
Prop
Type
Default Scopes
These defaults are applied unless you override scopes in the integration config:
user:readchannel:readchannel:writechat:writeevents:subscribe
Tools
kick_get_users
Get users
Prop
Type
kick_get_channels
Get channels
Prop
Type
kick_get_livestreams
Get livestreams
Prop
Type
kick_get_categories
Get categories
Prop
Type
kick_send_chat_message
Send chat message
Prop
Type
Notes
- Category: Entertainment
- Authentication mode: OAuth