mcp-chzzk
Enables querying the Chzzk live-streaming platform for channels, live broadcasts, search, and VODs using natural language.
README
mcp-chzzk
MCP (Model Context Protocol) server for Chzzk, Naver's Korean live-streaming platform.
Exposes Chzzk channel, live, search, and VOD lookups as MCP tools so Claude (or any MCP client) can query them.
⚠️ Chzzk does not publish an official public API. This server calls the same undocumented endpoints the web client uses. They may change without notice.
Tools
| Tool | Description |
|---|---|
get_channel |
Channel metadata (name, follower count, description, verified mark) |
get_live_status |
Live status — is broadcasting, title, category, viewer count, start time |
get_live_detail |
Extended live info including 720p thumbnail URL |
search_channels |
Search channels by keyword |
search_videos |
Search VOD by keyword |
search_lives |
Search currently live broadcasts by keyword |
list_lives |
List currently live broadcasts (popularity order) |
get_channel_videos |
List recent VOD for a channel |
Channel arguments accept either a 32-hex channel id or a chzzk.naver.com/[live/]<id> URL.
Install & Build
npm install
npm run build
Configuration
All Chzzk endpoints exposed here are public — no authentication is required.
For private or restricted content (adult-only channels, subscriber views), provide Naver session cookies via env vars:
export CHZZK_NID_AUT="..."
export CHZZK_NID_SES="..."
You can extract these from your browser's DevTools → Application → Cookies → naver.com while logged in.
Run
Direct:
node build/index.js
With MCP Inspector (browser-based debugger):
npm run inspect
Use from Claude Code
Add to ~/.claude/settings.json or .mcp.json:
{
"mcpServers": {
"chzzk": {
"command": "node",
"args": ["/absolute/path/to/mcp-chzzk/build/index.js"],
"env": {
"CHZZK_NID_AUT": "",
"CHZZK_NID_SES": ""
}
}
}
}
Then in Claude Code, run /mcp to confirm the chzzk server appears and the tools are listed.
References
- hacs-chzzk — Home Assistant integration with the verified Chzzk endpoints this server is built on.
- @modelcontextprotocol/sdk
- twitch-mcp-server — structural reference.
License
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.