edu_video_gen
[](https://mseep.ai/app/typing233-scenext-mcp)
# Scenext MCP Server
[English](README.en.md) | [中文](README.zh.md)
---
An MCP server that integrates with [Scenext](https://scenext.cn) AI video generation platform to create educational explanation videos based on topics.
一个集成 [Scenext](https://scenext.cn) AI 视频生成平台的 MCP 服务器,可以根据题目生成教学讲解视频。
## Quick Start / 快速开始
本地接入(uvx模式):
```json
{
"mcpServers": {
"scenext": {
"command": "uvx",
"args": ["scenext-mcp"],
"env": {
"SCENEXT_API_KEY": "your_actual_api_key_here"
}
}
}
}
```
远程接入(streamable-http):
```json
{
"mcpServers": {
"scenext": {
"type": "streamable-http",
"url": "https://mcp.scenext.cn/mcp/",
"headers": {
"Authorization": "Bearer your_actual_api_key_here"
}
}
}
}
```
Some clients do not support the headers field. You can manually configure and add the request header "Authorization=Bearer your_actual_api_key_here".
For detailed documentation:
- [English Documentation](README.en.md)
- [中文文档](README.zh.md)
## License / 许可证
MIT LicenseTDQS
Scored across 2 tools
The two tools have completely distinct purposes: gen_video creates educational videos, while query_video_status checks the status of those video generation tasks. There is no overlap in functionality, and an agent would never confuse one for the other.
Both tools follow a consistent verb_noun naming pattern: gen_video and query_video_status. The naming is clear, predictable, and uses the same snake_case convention throughout.
With only 2 tools, the server feels thin for a video generation service. While the core create+query workflow is covered, typical video generation domains might include additional operations like listing tasks, canceling tasks, or managing templates. The count is borderline but functional.
The server covers the essential create and query operations for video generation, forming a complete lifecycle. However, there are minor gaps: no tool to list or manage existing tasks, and no ability to cancel a task or adjust video parameters after submission. Agents can work around this, but it's not fully comprehensive.