Scenext MCP Server

Scenext MCP Server is a video generation service based on the Model Context Protocol (MCP) that allows you to generate educational explanation videos through simple tool calls.

Configuration

Local Access (UVX Mode)

Add the following configuration to your Claude Desktop configuration file:
{
  "mcpServers": {
    "scenext": {
      "command": "uvx", 
      "args": ["scenext-mcp"],
      "env": {
        "SCENEXT_API_KEY": "your_actual_api_key_here"
      }
    }
  }
}

Remote Access (streamable-http)

Using Authorization header approach:
{
  "mcpServers": {
    "scenext": {
      "type": "streamable-http",
      "url": "https://mcp.scenext.cn/mcp/",
      "headers": {
        "Authorization": "Bearer your_actual_api_key_here"
      }
    }
  }
}
Some MCP clients do not support the headers field. You can manually configure and add the request header “Authorization=Bearer your_actual_api_key_here”.

Available Tools

gen_video

The main tool for generating educational explanation videos.

query_video_status

Query the status of video generation tasks.