> ## Documentation Index
> Fetch the complete documentation index at: https://docs.scenext.cn/llms.txt
> Use this file to discover all available pages before exploring further.

# MCP Service

> Learn about Scenext's MCP server

# 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:

```json theme={null}
{
  "mcpServers": {
    "scenext": {
      "command": "uvx", 
      "args": ["scenext-mcp"],
      "env": {
        "SCENEXT_API_KEY": "your_actual_api_key_here"
      }
    }
  }
}
```

### Remote Access (streamable-http)

Using Authorization header approach:

```json theme={null}
{
  "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.
