Video marketing platform
## Wistia MCP Server: Business Video Platform The **Wistia MCP Server** integrates the marketing-focused video hosting platform directly into Google Antigravity, enabling AI assistants to manage video content, track viewer engagement, and optimize video marketing programmatically. This integration brings enterprise video marketing capabilities to your development workflow. ### Why Wistia MCP? - **Marketing Focus**: Video hosting designed specifically for marketing teams with lead generation features - **Deep Analytics**: Heatmaps, engagement graphs, and viewer-level tracking for marketing insights - **Lead Capture**: Built-in email collection, CTAs, and integrations with marketing automation tools - **SEO Optimization**: Video sitemaps, schema markup, and SEO-friendly embedding for search visibility - **Brandable Player**: Fully customizable player that matches your brand without Wistia branding ### Key Features #### 1. Video Upload ```python from anthropic import Anthropic client = Anthropic() response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Upload this webinar recording to Wistia and configure lead capture at the 50% mark" }], tools=[{ "name": "wistia_upload", "description": "Upload videos to Wistia" }] ) ``` #### 2. Engagement Analytics ```python # Analyze viewer engagement response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Show me the engagement heatmap and identify where viewers drop off in our product demo" }], tools=[{"name": "wistia_analytics", "description": "Access engagement analytics"}] ) ``` #### 3. Lead Tracking ```python # Track video leads response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Get all leads captured from videos this month with their viewing behavior" }], tools=[{"name": "wistia_leads", "description": "Track and export leads"}] ) ``` #### 4. Channel Management ```python # Manage video channels response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Create a new channel for customer success videos with custom branding" }], tools=[{"name": "wistia_channels", "description": "Manage video channels"}] ) ``` ### Configuration ```json { "mcpServers": { "wistia": { "command": "npx", "args": ["-y", "@anthropic/mcp-wistia"], "env": { "WISTIA_API_TOKEN": "your-wistia-api-token" } } } } ``` ### Use Cases **Video Marketing**: Host landing page videos with lead capture and A/B testing capabilities. **Sales Enablement**: Track which prospects watch your videos and how engaged they are. **Customer Education**: Deliver product training with completion tracking and certification support. **Webinar Hosting**: Host on-demand webinars with gated access and lead generation features. The Wistia MCP Server brings marketing-focused video capabilities directly into your development workflow, enabling video-driven lead generation and engagement tracking.
{
"mcpServers": {
"wistia": {
"mcpServers": {
"wistia": {
"env": {
"WISTIA_API_TOKEN": "your-api-token"
},
"args": [
"-y",
"wistia-mcp-server"
],
"command": "npx"
}
}
}
}
}