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
Zype MCP requires a Zype account. Don't have one? Request a demo.
Get your API key
Find your Admin API key in your Zype account settings. We recommend using a read-only key while you get started to ensure no unintended changes are made to your account. However, setting ZYPE_MCP_MODE to "safe" will help ensure your AI tools confirm any changes before they are made.
Configure Cursor MCP
Create or edit .cursor/mcp.json in your project root:
{
"mcpServers": {
"zype": {
"command": "npx",
"args": ["-y", "@zype-com/mcp"],
"env": {
"ZYPE_API_KEY": "your_admin_api_key",
"ZYPE_MCP_MODE": "safe"
}
}
}
}
Start using
Restart Cursor and the Zype tools will be available in Agent mode.
💡 Tip: ZYPE_MCP_MODE: "safe" requires confirmation before any destructive operations like deletes.
Get your API key
Find your Admin API key in your Zype account settings. We recommend using a read-only key while you get started to ensure no unintended changes are made to your account. However, setting ZYPE_MCP_MODE to "safe" will help ensure your AI tools confirm any changes before they are made.
Configure Gemini CLI
Create or edit ~/.gemini/settings.json:
{
"mcpServers": {
"zype": {
"command": "npx",
"args": ["-y", "@zype-com/mcp"],
"env": {
"ZYPE_API_KEY": "your_admin_api_key",
"ZYPE_MCP_MODE": "safe"
}
}
}
}
Start using
Restart Gemini CLI and the Zype tools will be available.
💡 Tip: ZYPE_MCP_MODE: "safe" requires confirmation before any destructive operations like deletes.
Get your API key
Find your Admin API key in your Zype account settings. We recommend using a read-only key while you get started to ensure no unintended changes are made to your account. However, setting ZYPE_MCP_MODE to "safe" will help ensure your AI tools confirm any changes before they are made.
Configure Claude Desktop
Open Claude Desktop settings and add the Zype MCP server:
{
"mcpServers": {
"zype": {
"command": "npx",
"args": ["-y", "@zype-com/mcp"],
"env": {
"ZYPE_API_KEY": "your_admin_api_key",
"ZYPE_MCP_MODE": "safe"
}
}
}
}
Start using
Restart Claude Desktop and start managing your video library with natural language!
💡 Tip: ZYPE_MCP_MODE: "safe" requires confirmation before any destructive operations like deletes.
Get your API key
Find your Admin API key in your Zype account settings. We recommend using a read-only key while you get started to ensure no unintended changes are made to your account. However, setting ZYPE_MCP_MODE to "safe" will help ensure your AI tools confirm any changes before they are made.
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.