Twitch MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| TWITCH_CLIENT_ID | Yes | Twitch API client ID | |
| MCP_PUBLIC_BASE_URL | No | Public base URL for OAuth (optional, for SSE mode behind proxy) | |
| TWITCH_CLIENT_SECRET | Yes | Twitch API client secret |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| get_twitch_userB | Obtiene información detallada de un usuario de Twitch por su nombre de usuario (login). Devuelve ID, nombre para mostrar, descripción, vista previa de perfil, fecha de creación, etc. |
| check_user_liveA | Verifica si un usuario de Twitch está transmitiendo en vivo actualmente. Devuelve información del stream si está en vivo, o null si está offline. |
| get_user_videosA | Obtiene los videos de un usuario de Twitch. Puede filtrar por tipo (archive/VODs, highlight, upload) y limitar la cantidad de resultados. |
| get_top_streamsB | Obtiene los streams más populares en Twitch actualmente. Puede filtrar por juego y limitar resultados. |
| get_top_gamesA | Obtiene los juegos más populares en Twitch actualmente, ordenados por número de espectadores. |
| search_channelsA | Busca canales de Twitch por nombre o palabras clave. Útil para descubrir nuevos streamers. |
| get_game_infoA | Obtiene información detallada de un juego en Twitch por su nombre. Devuelve ID, nombre, box art URL. |
| get_channel_followersA | Obtiene estadísticas de seguidores de un canal incluyendo el total y los seguidores más recientes. |
| get_user_clipsA | Recupera los clips más populares de un canal en una ventana de tiempo configurable. |
| get_creator_insightsA | Genera un resumen ejecutivo para un creador: estado en vivo, crecimiento de seguidores, VODs y clips recientes. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 10 tools
Each tool targets a distinct data retrieval purpose: user profile, live status, videos, top streams, top games, channel search, game details, followers, clips, and aggregated insights. No overlap between them.
Most tools use the 'get_' prefix pattern, but 'check_user_live' and 'search_channels' deviate from that convention. The underlying verb_noun structure is clear and predictable overall.
10 tools is well-scoped for a Twitch read-only API server, covering discovery, user content, and analytics without unnecessary bloat.
The set covers core Twitch data needs: user profiles, live status, videos, clips, followers, top streams/games, search, and insights. Minor gaps exist (e.g., stream schedules) but no critical dead ends for read-only use.