> ## 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服务

> 了解Scenext 的MCP服务器

# Scenext MCP 服务器

Scenext MCP 服务器是一个基于 Model Context Protocol (MCP) 的视频生成服务，允许您通过简单的工具调用生成教学讲解视频。

## 配置

### 本地访问（UVX 模式）

在您的 Claude Desktop 配置文件中添加以下配置：

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

### 远程访问（streamable-http）

使用 Authorization 头部方式：

```json theme={null}
{
  "mcpServers": {
    "scenext": {
      "type": "streamable-http",
      "url": "https://mcp.scenext.cn/mcp/",
      "headers": {
        "Authorization": "Bearer your_actual_api_key_here"
      }
    }
  }
}
```

有的客户端不支持headers字段，可以手动配置添加请求头Authorization=Bearer your\_actual\_api\_key\_here

## 可用工具

### gen\_video

生成教学讲解视频的主要工具。

### query\_video\_status

查询视频生成任务的状态。
