wetv-mcp

wetv-mcp

MCP server for searching, discovering, and exploring Chinese long-form video content from WeTV and Tencent Video, enabling AI assistants to recommend dramas, variety shows, anime, and movies with play links, ratings, and episode info.

Category
Visit Server

README

๐ŸŽฌ WeTV MCP Server

The first MCP server for Chinese long-form video streaming. Search, discover, and explore dramas, variety shows, anime, and movies on WeTV and Tencent Video (่…พ่ฎฏ่ง†้ข‘).

npm version License: MIT MCP

ไธญๆ–‡ๆ–‡ๆกฃ


โœจ What is this?

wetv-mcp is a Model Context Protocol (MCP) server that lets AI assistants (Claude, ChatGPT, Cursor, etc.) search and recommend content from WeTV and Tencent Video โ€” the largest Chinese-language streaming platform with 350M+ monthly active users.

Why does this matter?

YouTube and Spotify already have MCP servers. But there's zero MCP coverage for Chinese long-form video content. This fills that gap.

When you ask your AI assistant "What Chinese drama should I watch?", it can now give you real answers with play links, ratings, cast info, and episode updates โ€” all from WeTV/Tencent Video.


๐Ÿš€ Quick Start

Option 1: Clone & Run (Recommended)

git clone https://github.com/aimeeluwang/wetv-mcp.git
cd wetv-mcp
npm install
npm run build

Then add to your MCP configuration:

{
  "mcpServers": {
    "wetv": {
      "command": "node",
      "args": ["/path/to/wetv-mcp/dist/index.js"]
    }
  }
}

๐Ÿ’ก Replace /path/to/wetv-mcp with the actual path where you cloned the repo.

Configuration file locations:

  • Claude Desktop: ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
  • Cursor: .cursor/mcp.json in your project root
  • Windsurf: ~/.codebuddy/mcp.json
  • WorkBuddy: ~/.workbuddy/mcp.json

Option 2: Remote Mode (HTTP Server)

cd wetv-mcp

# Start HTTP server
npm run start:http
# Server runs at http://localhost:3000/mcp

Then connect via Streamable HTTP:

{
  "mcpServers": {
    "wetv": {
      "url": "http://localhost:3000/mcp"
    }
  }
}

๐Ÿ› ๏ธ Available Tools

Tool Description Example Query
search_content Full-text search across all content "Search for Joy of Life on Tencent Video"
get_trending Current trending/hot content rankings "What's the hottest drama on WeTV right now?"
get_popular Most popular content by combined score "What are the most popular Chinese anime?"
get_content_detail Detailed info (synopsis, cast, rating, episodes) "Tell me about Chasing Jade โ€” what's it about?"
get_episodes Episode list with air dates and play links "How many episodes does Joy of Life S3 have?"
get_recommendations AI-powered personalized recommendations "Recommend something romantic for date night"

Content Types Supported

  • ๐Ÿ“บ Dramas (็”ต่ง†ๅ‰ง) โ€” Chinese dramas, C-dramas, period/modern/fantasy
  • ๐ŸŽญ Variety Shows (็ปผ่‰บ) โ€” Reality shows, talent competitions, talk shows
  • ๐ŸŽŒ Anime (ๅŠจๆผซ) โ€” Chinese animation (donghua)
  • ๐ŸŽฌ Movies (็”ตๅฝฑ) โ€” Chinese films
  • ๐Ÿ“น Documentaries (็บชๅฝ•็‰‡)

Regions Supported

  • ๐Ÿ‡จ๐Ÿ‡ณ China Mainland (CN)
  • ๐Ÿ‡น๐Ÿ‡ญ Thailand (TH) โ€” WeTV
  • ๐Ÿ‡ฎ๐Ÿ‡ฉ Indonesia (ID) โ€” WeTV
  • ๐Ÿ‡ป๐Ÿ‡ณ Vietnam (VN) โ€” WeTV
  • ๐Ÿ‡ฒ๐Ÿ‡พ Malaysia (MY) โ€” WeTV
  • ๐Ÿ‡ต๐Ÿ‡ญ Philippines (PH) โ€” WeTV
  • ๐ŸŒ Global (GLOBAL)

๐Ÿ’ฌ Example Conversations

"What Chinese drama should I watch?"

User: What's trending on WeTV right now?

AI (via get_trending): Here are the top 5 trending dramas:

1. ๐Ÿฅ‡ Joy of Life Season 3 (ๅบ†ไฝ™ๅนด ็ฌฌไธ‰ๅญฃ) โ˜…8.6
   Political intrigue meets comedy. Zhang Ruoyun returns as Fan Xian.
   ๐Ÿ‘‰ Watch: https://v.qq.com/x/cover/mzc00200qyn3.html

2. ๐Ÿฅˆ Chasing Jade (้€็މ) โ˜…8.3
   Dual female leads in an epic fantasy adventure across three realms.
   ๐Ÿ‘‰ Watch: https://v.qq.com/x/cover/mzc00200zy26.html

3. ๐Ÿฅ‰ Legend of the Hunter (็ŒŽไบบไผ ่ฏด) โ˜…8.4
   Republic-era mystery thriller set in a primeval forest.
   ๐Ÿ‘‰ Watch: https://v.qq.com/x/cover/mzc00200lrcs.html

"I'm in a romantic mood"

User: Recommend something romantic and sweet for tonight

AI (via get_recommendations with mood="romantic"):
Based on your mood, here are my picks:

1. Our Beautiful Encounters (ๆˆ‘ไปฌ็š„็พŽๅฅฝ้™…้‡) โ˜…7.8
   Sweet office romance with a genius programmer meets CEO architect.

2. The Legend of Shen Li (ไธŽๅ‡ค่กŒ) โ˜…8.1
   Immortal romance starring Zhao Liying & Lin Gengxin.

3. Only For Love (ไปฅ็ˆฑไธบ่ฅ) โ˜…7.6
   Top 3 on WeTV Southeast Asia โ€” a charming CEO x journalist love story.

๐Ÿ—๏ธ Development

# Install dependencies
npm install

# Run in development mode (stdio)
npm run dev

# Run HTTP server in development mode
npm run dev:http

# Build for production
npm run build

# Start production (stdio)
npm start

# Start production (HTTP)
npm run start:http

Environment Variables

Variable Default Description
WETV_MCP_PORT 3000 HTTP server port

๐Ÿ“ก API Endpoints (HTTP Mode)

Endpoint Method Description
/mcp POST MCP JSON-RPC requests
/mcp GET SSE stream for server notifications
/mcp DELETE Close session
/health GET Health check
/ GET Server info & usage instructions

๐Ÿ—บ๏ธ Roadmap

  • [x] 6 core tools (search, trending, popular, detail, episodes, recommendations)
  • [x] Stdio + Streamable HTTP dual transport
  • [x] Multi-region support (China + Southeast Asia)
  • [x] Bilingual content (Chinese + English)
  • [ ] OAuth user authentication (watchlist, progress tracking)
  • [ ] Subtitle/transcript retrieval
  • [ ] Live WeTV API integration
  • [ ] Cast/crew deep profiles
  • [ ] Comment/danmaku AI summaries
  • [ ] Content analytics (B2B)

๐Ÿ“„ License

MIT ยฉ aimeeluwang


๐ŸŒŸ Contributing

PRs welcome! See CONTRIBUTING.md for guidelines.

Key areas where contributions are appreciated:

  • Additional content data
  • New tools (subtitle search, comment analysis, etc.)
  • WeTV API integration
  • Multi-language subtitle support
  • Bug reports and feature requests

Built with โค๏ธ for the global C-drama community. The first MCP to bring Chinese streaming content to AI assistants.

Recommended Servers

playwright-mcp

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.

Official
Featured
TypeScript
Magic Component Platform (MCP)

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.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

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.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

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.

Official
Featured
TypeScript
Kagi MCP Server

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.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

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.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured