
KickMCP
Kick API MCP
3 years
Works with Finder
2
Github Watches
1
Github Forks
2
Github Stars
🎮 KickMCP - Kick API Integration Made Easy
🚀 A powerful Model Context Protocol (MCP) server for seamless Kick.com API integration
📋 Table of Contents
- Quick Start
- Features
- User Guides
- Installation
- Authentication Setup
- API Documentation
- Troubleshooting
- Contributing
- License
🚀 Quick Start
- Install the package:
npm install kick-mcp
- Create your MCP configuration (mcp.json):
{
"mcpServers": {
"kickmcp": {
"command": "node",
"args": ["./dist/bin/mcp.js"]
}
},
"version": "1.0.0",
"description": "MCP configuration for KickMCP project",
"defaultServer": "kickmcp"
- Get your credentials:
- Visit Kick Developer Settings to obtain your Client ID
- Get your Smithery key from Smithery.ai
✨ Features
-
Complete Kick API Integration:
- Authentication (OAuth, App Access Tokens)
- Chat messaging with reply support
- Channel information by ID and slug
- User profile management
- Stream control (start/stop/update)
- Polls and predictions
- Livestream status webhooks
- Category search and trending content
-
MCP Standard Compliance:
- JSON-RPC 2.0 interface
- Standardized authentication
- Extensible endpoints
- AI assistant compatibility
-
Developer Experience:
- Modern TypeScript codebase
- Comprehensive documentation
- Built-in diagnostics
- Consistent error handling
👥 User Guides
👀 For Viewers
Enhance your viewing experience with KickMCP:
- Chat Integration: Build custom chat clients with real-time message support
- Channel Notifications: Get alerts when your favorite streamers go live
- Content Discovery: Find new channels and trending categories
Example: Setting up chat notifications
const kickmcp = require('kick-mcp');
kickmcp.on('chatMessage', (message) => {
if (message.mentions.includes(yourUsername)) {
sendNotification(`${message.sender} mentioned you!`);
}
});
🎥 For Streamers
Optimize your streaming workflow:
- Stream Management: Control your stream settings programmatically
- Chat Moderation: Build custom moderation tools
- Analytics: Track viewer engagement and channel growth
- Polls & Predictions: Create interactive content
Example: Creating a poll
const poll = await kickmcp.createPoll({
question: "What game next?",
options: ["Minecraft", "Fortnite", "Valorant"],
duration: 300 // 5 minutes
});
💻 For Developers
Build powerful Kick.com integrations:
- OAuth Authentication: Secure user authentication flow
- Webhooks: Real-time event processing
- RESTful API: Complete API coverage
- TypeScript Support: Full type definitions
Example: Setting up webhooks
const webhook = await kickmcp.createWebhook({
events: ['stream.online', 'stream.offline'],
url: 'https://your-server.com/webhook'
});
🔧 Installation
npm install kick-mcp
# or with yarn
yarn add kick-mcp
🔑 Authentication Setup
- Visit Kick Developer Settings
- Create a new application
- Copy your Client ID and Client Secret
- Configure your MCP server:
const kickmcp = require('kick-mcp');
kickmcp.configure({
clientId: 'YOUR_CLIENT_ID',
clientSecret: 'YOUR_CLIENT_SECRET'
});
📚 API Documentation
For detailed API documentation, visit:
🔍 Troubleshooting
Common issues and solutions:
-
Authentication Errors
- Verify your Client ID and Secret
- Check your OAuth redirect URI
- Ensure your Smithery key is valid
-
Rate Limiting
- Implement proper request throttling
- Use caching where appropriate
- Monitor your API usage
🤝 Contributing
We welcome contributions! Please see our Contributing Guide for details.
📄 License
MIT © NosytLabs
相关推荐
🧑🚀 全世界最好的LLM资料总结(Agent框架、辅助编程、数据处理、模型训练、模型推理、o1 模型、MCP、小语言模型、视觉语言模型) | Summary of the world's best LLM resources.
🔥 1Panel provides an intuitive web interface and MCP Server to manage websites, files, containers, databases, and LLMs on a Linux server.
⛓️RuleGo is a lightweight, high-performance, embedded, next-generation component orchestration rule engine framework for Go.
This repository is for development of the Azure MCP Server, bringing the power of Azure to your agents.
This project was created to demonstrate how we can connect with different Model Context Protocols (MCPs).
Flock is a workflow-based low-code platform for rapidly building chatbots, RAG, and coordinating multi-agent teams, powered by LangGraph, Langchain, FastAPI, and NextJS.(Flock 是一个基于workflow工作流的低代码平台,用于快速构建聊天机器人、RAG、Agent和Muti-Agent应用,采用 LangGraph、Langchain、FastAPI 和 NextJS 构建。)