Kuaizi MCP

Local 2025-09-01 00:59:39 0
Entertainment And Media @Kuaizi/Kuaizi-MCP

Kuaizi MCP Server has created a seamless integration of LLM Agents and the capabilities of the Kuaizi SaaS platform. Through six core service interfaces, it empowers the commercial video production process in all aspects. From AI script generation, Lingguangsuo creative mining, Zhijing video structure analysis, to one-click automatic synthesis of finished videos, intelligent slicing of long videos and multi-language AI dubbing, we provide users with end-to-end video content production solutions.


Product Introduction

Kuaizi MCP Server has created a seamless integration of LLM Agents and the capabilities of the Kuaizi SaaS platform. Through six core service interfaces, it empowers the commercial video production process in all aspects. From AI script generation, Lingguangsuo creative mining, Zhijing video structure analysis, to one-click automatic synthesis of finished videos, intelligent slicing of long videos and multi-language AI dubbing, we provide users with end-to-end video content production solutions.

Below is a virtual simplified usage scenario to help users understand the capabilities of various tools in Kuaizi MCP service:

Traditional Workflow

After receiving a beauty client's request, editor Xiao Lin manually searches for popular video inspirations, spends 3 hours writing storyboard scripts, and rents additional microscopic equipment to reshoot product close-ups due to unfamiliarity with laboratory shots. During editing, he repeatedly adjusts transition effects, and after exporting, he adjusts video dimensions and subtitle positions for Douyin and Xiaohongshu respectively, taking a total of 48 hours.

Agent Intelligent Workflow

  1. Xiao Lin inputs the client's requirements to the Agent, and the Agent uses Inspiration Search to automatically generate keywords "mask makeup test/oily skin extreme challenge"
  2. After importing competitive hit videos to the Agent, the Agent uses the Smart Mirror analysis tool to break down the "pain point amplification + data endorsement + ordinary person comparison" structure
  3. Based on Xiao Lin's requirements, the Agent uses the AI script generation tool to output storyboards: virtual laboratory microscopic animation opening (0-3 seconds) + blogger wearing mask sports footage (4-12 seconds) + AI-generated 12-hour makeup retention dynamic chart (13-15 seconds)
  4. Finally, the Agent uses one-click video creation to automatically compose horizontal and vertical versions, simultaneously adding "makeup smudge sound effects" and dynamic large subtitles, with the Douyin version additionally generating Sichuan-Chongqing dialect dubbing

Efficiency Leap

The production time is compressed from 2 days to 90 minutes, and the finished video simultaneously tops Douyin's beauty rankings and Xiaohongshu's popular searches.

Capability Introduction

AI Script Generation

Input video topics and keywords to automatically generate structured video scripts including shot grouping, scene descriptions, and voice-over scripts.

  • Input

    • input: Script topic, product selling points, promotional mechanisms, and other information (string, required)
    • language: video script language (string, not required, default Chinese)
    • Output

    • script: Structured video script containing shot grouping, scene descriptions, and voice-over scripts (string)

Input product or industry keywords to generate relevant marketing inspirations and content strategy reports through AI analysis of internet-wide data.

  • Input

    • query: Search content, such as product or industry keywords (string, required)
    • Output

    • content: Marketing inspiration and content strategy report (string)

    • image_list: Strategy report related images (array)

      • url: Image URL (string)

        • video_list: Strategy report related videos (array)
      • url: Image URL (string)

Smart Mirror Video Analysis

Input popular video links to intelligently analyze video structure and generate reusable creative script templates.

  • Input

    • vedio_url: Analysis video link (string, required)
    • Output

    • content: Video analysis script markdown text (string)

One-Click Video Creation

Input product materials and core selling points to automatically compose multiple versions of marketing videos with AI dubbing, subtitles, and background music.

  • Input

    • input: Marketing video keywords, brand name, product name, product selling points, etc. (string, required)
    • material_list: Images or video materials used for composition (string)

      • type: Material type, picture pic, video video (string, required)
      • value: Material link URL (string, required)
      • Output
    • video_list: Composed marketing video information (array)

      • cover_url: Video cover image (string)
      • video_url: Video link (string)
      • video_name: Video name (string)
      • video_duration: Video duration (float)

Usage Methods

Using in Cursor

Add the following configuration to .cursor/mcp.json in your Cursor project:

{
  "mcpServers": {
    "mcp-server-kuaizi": {
      "url": "http://dev-mcp-video.kuaizi.co/sse"
    },
    "Other tools": {
      "...": "..."
    }
  }
}

Using in Trae

Find the MCP configuration page in your Trae AI assistant settings and manually add the custom MCP configuration JSON as follows:

{
  "mcpServers": {
    "mcp-server-kuaizi": {
      "url": "http://dev-mcp-video.kuaizi.co/sse"
    },
    "Other tools": {
      "...": "..."
    }
  }
}

Using in Other MCP Clients

You can also use it in any other MCP Client by properly configuring the Server SSE connection as http://dev-mcp-video.kuaizi.co/sse to connect to the Kuaizi MCP Server.

[
  {
    "annotations": {
      "destructiveHint": true,
      "openWorldHint": true
    },
    "description": "输入视频主题和关键词,自动生成包含镜头分组、画面描述和口播台词的结构化视频脚本",
    "inputSchema": {
      "properties": {
        "content": {
          "description": "本主题、商品卖点、促销机制等信息(字符串,必传)",
          "type": "string"
        },
        "language": {
          "description": "描述语言(字符串,默认中文)",
          "type": "string"
        }
      },
      "required": [
        "content"
      ],
      "type": "object"
    },
    "name": "script_generate"
  },
  {
    "annotations": {
      "destructiveHint": true,
      "openWorldHint": true
    },
    "description": "输入爆款视频链接,智能解析视频结构并生成可复用的创作脚本模板。",
    "inputSchema": {
      "properties": {
        "video_url": {
          "description": "解析视频链接(字符串)",
          "type": "string"
        }
      },
      "required": [
        "video_url"
      ],
      "type": "object"
    },
    "name": "video_analysis"
  },
  {
    "annotations": {
      "destructiveHint": true,
      "openWorldHint": true
    },
    "description": "输入产品素材和核心卖点,自动合成带AI配音、字幕和背景音乐的多版本营销视频",
    "inputSchema": {
      "properties": {
        "input": {
          "description": "营销视频关键词,品牌名、产品品、产品卖点等(字符串)",
          "type": "string"
        },
        "material_list": {
          "description": "用于合成识破的图片或视频素材(字符串)",
          "items": {
            "properties": {
              "type": {
                "description": "素材类型,图片 pic、视频 video(字符串)",
                "required": true,
                "type": "string"
              },
              "value": {
                "description": "素材链接URL(字符串)",
                "required": true,
                "type": "string"
              }
            },
            "type": "object"
          },
          "type": "array"
        }
      },
      "required": [
        "input",
        "material_list"
      ],
      "type": "object"
    },
    "name": "video_generate"
  }
]