data
Twitch MCP, CLI, and Lua Integration for AI Agents
Twitch integration docs for AI agents: MCP gateway setup, Twitch CLI commands, Lua API reference, credentials, and function schemas.Twitch for agents
Credentials can be configured manually in web or CLI hosts.
Use this integration from Lua code mode, the headless integrations CLI, or the KosmoKrator MCP gateway. The same package metadata powers all three surfaces.
Agent Surfaces
Machine-Readable Metadata
Function Catalog
| Function | Type | Parameters | Description |
|---|---|---|---|
twitch.twitch_list_streams | Read read | 7 | List live streams on Twitch. Filter by game, language, or specific users. Returns stream title, viewer count, and broadcaster info. |
twitch.twitch_get_user | Read read | 2 | Get information about a Twitch user by user ID or login name. Returns display name, bio, profile image, and account details. |
twitch.twitch_list_games | Read read | 2 | Get information about Twitch games/categories by ID or name. Returns game name, box art URL, and IGDB ID. |
twitch.twitch_get_game | Read read | 1 | Get information about a specific Twitch game/category by its ID. Returns game name, box art URL, and IGDB ID. |
twitch.twitch_list_channels | Read read | 3 | List channel information on Twitch. Filter by broadcaster ID. Returns channel description, game, and broadcast settings. |
twitch.twitch_get_channel | Read read | 1 | Get information about a specific Twitch channel by broadcaster ID. Returns channel title, game, description, and broadcast settings. |
twitch.twitch_search_categories | Read read | 3 | Search for games/categories on Twitch by name. Returns matching categories with IDs you can use to filter streams. |
twitch.twitch_get_current_user | Read read | 0 | Get information about the currently authenticated Twitch user. Returns display name, bio, profile image, and account type. |