Skip to content

Add Twitch MCP Server #155

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions servers/twitch-mcp/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# Twitch MCP Server

AI integration for Twitch chat with moderation and interaction capabilities.

## Overview

The Twitch MCP Server provides a Model Context Protocol interface for interacting with Twitch chat. It allows AI assistants to:

- Moderate chat messages
- Respond to specific commands
- Manage channel activities
- Interact with viewers

## Configuration

To use this MCP server, you'll need to provide the following credentials:

- **Client ID**: Your Twitch application client ID
- **Broadcaster ID**: Your Twitch broadcaster ID
- **Channel**: Your Twitch channel name
- **Auth Token**: Your Twitch authentication token

## Usage

Once configured, this server can be used with any MCP-compatible client, including:

- Claude Desktop
- Cursor IDE
- Cline
- Other MCP tools

## License

This project is licensed under the MIT License.
30 changes: 30 additions & 0 deletions servers/twitch-mcp/server.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: twitch-mcp
image: mcp/twitch-mcp
type: server
meta:
category: social
tags:
- twitch
- streaming
- chat
about:
title: Twitch MCP Server
description: AI integration for Twitch chat with moderation and interaction capabilities
icon: https://avatars.githubusercontent.com/u/5429470?s=200&v=4
source:
project: https://github.com/EclipseXV/twitch-mcp
config:
description: Configure your Twitch credentials
secrets:
- name: twitch-mcp.client_id
env: TWITCH_CLIENT_ID
example: <YOUR_TWITCH_CLIENT_ID>
- name: twitch-mcp.broadcaster_id
env: TWITCH_BROADCASTER_ID
example: <YOUR_TWITCH_BROADCASTER_ID>
- name: twitch-mcp.channel
env: TWITCH_CHANNEL
example: <YOUR_TWITCH_CHANNEL>
- name: twitch-mcp.auth_token
env: TWITCH_AUTH
example: <YOUR_TWITCH_AUTH_TOKEN>