AI-Powered Video Management
Connect your AI agents to Zype's video platform. Manage content, build playlists, and analyze performance through natural language.
🚀 Quick Start
Get your API key
Find your Admin API key in your Zype account settings.
Configure Claude Desktop
Open Claude Desktop settings and add the Zype MCP server:
{
"mcpServers": {
"zype": {
"command": "npx",
"args": ["-y", "zype-mcp"],
"env": {
"ZYPE_API_KEY": "your_admin_api_key"
}
}
}
}
Start using
Restart Claude Desktop and start managing your video library with natural language!
Get your API key
Find your Admin API key in your Zype account settings.
Configure Cursor MCP
Create or edit .cursor/mcp.json in your project root:
{
"mcpServers": {
"zype": {
"url": "https://mcp.zype.com/mcp",
"headers": {
"X-Zype-API-Key": "your_admin_api_key"
}
}
}
}
Start using
Restart Cursor and the Zype tools will be available in Agent mode.
Get your API key
Find your Admin API key in your Zype account settings.
Configure HTTP Request node
Use the HTTP Request node to call the MCP endpoint:
# Endpoint
POST https://mcp.zype.com/mcp
# Headers
Content-Type: application/json
X-Zype-API-Key: your_admin_api_key
# Body (example: list videos)
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "list_videos",
"arguments": { "per_page": 10 }
}
}
✨ What You Can Do
📚 Manage Content
List, create, update, and organize videos and playlists using natural language commands.
📊 Analyze Performance
Query analytics data to find top performers, engagement trends, and revenue insights.
🎯 Smart Playlists
"Create a playlist of my top 10 most-watched videos from last week"
🏷️ Metadata & Categories
Bulk update metadata, assign categories, and organize large content libraries efficiently.
💰 Monetization
Manage subscriptions, plans, and transactions. Set access requirements on content.
🔒 Safe by Default
Destructive operations require confirmation. Full audit logging for accountability.
💬 Example Commands
# Content Discovery
"Show me all videos in the Action genre"
"Find videos updated in the last week"
"List subscription-required content"
# Playlist Management
"Create a playlist called 'Best of 2025' with my top 10 videos"
"Add all Comedy videos to the Weekend Watch playlist"
# Analytics
"What are my most-watched videos this month?"
"Show subscription revenue trends"
"Which videos have high engagement but low views?"
# Bulk Operations
"Set all my Football Playoff videos to Premium category"
"Update country to US for all videos without a country set"
📖 Resources
📚 Tool Reference
Complete reference for all 70 MCP tools with parameters and examples.