klo-mcp
klo-mcp:视频编辑 MCP 服务器
为你的编程代理配备一个真正的视频编辑器。
klo 是一款你可以与之对话的原生 macOS 视频编辑器。这是它的 MCP 服务器:Claude Code、Codex、Cursor、Claude Desktop 或任何 MCP 客户端都可以驱动整个时间线,提供 83 个工具,而你的素材永远不会离开你的 Mac。
底层是真正的编辑器。 不是 ffmpeg 封装:波纹编辑、词间隙剪切、卡拉 OK 字幕、调色、生成音乐、ProRes 导出。每一次编辑都会落在一个人类可以打开和调整的普通时间线上。
媒体保持本地。 通过文本协议传输视频字节会失败(base64 对比上下文窗口)。klo 将媒体保存在你的机器上,转而提供语义化时间线操作。代理发送意图,取回紧凑的结果:时间码、转录文本,以及需要查看时的真实帧。
本地、令牌门控、默认关闭。 服务器仅监听
127.0.0.1,需要 bearer token,并且在你于 klo 设置中开启之前不会执行任何操作。
快速开始
获取 klo for Mac(包含免费层级,macOS 13+)。
在 klo 中:设置 → 连接,打开连接,并复制它显示的 URL 和令牌。
连接你的客户端:
Claude Desktop(一键)
下载 klo.mcpb 并打开。完成。
Claude Code
claude mcp add --transport http klo http://127.0.0.1:41720/mcp \
--header "Authorization: Bearer YOUR_TOKEN"使用 klo 设置中显示的确切 URL(如果 41720 被占用,端口可能不同)。
Cursor、Codex 及其他 MCP 客户端
要么将客户端指向上述 HTTP 端点,要么将此包用作 stdio 服务器:
{
"mcpServers": {
"klo": {
"command": "npx",
"args": ["-y", "klo-mcp"],
"env": { "KLO_MCP_TOKEN": "YOUR_TOKEN" }
}
}
}Related MCP server: Kdenlive MCP Server
你的代理可以做什么
用自然语言提问,或直接调用工具。一些真实示例提示:
"剪掉无聊的部分和填充词,然后逐字添加字幕。"
"监视这个文件夹,把每个新录制都变成带字幕的竖屏片段。"
"从转录中挑选每一句的最佳镜头,并组装剪辑。"
"将所有内容调色以匹配这个参考,并为客户导出 ProRes。"
83 个工具
分组 | 工具 |
library | get_project_state、get_media_library、import_media、import_from_url、relink_to_sources、list_files、new_project |
timeline | add_media_to_timeline、assemble_cut、insert_at、move_clip、split_clip、split_audio、trim_clip、delete_clips、ripple_delete、close_gaps、separate_audio、unlink_clip、link_clips、replace_audio、add_marker、set_in_out、set_track_lock、seek、verify_timeline |
project | set_canvas_ratio、set_frame_rate、set_brand_kit |
cuts | add_transition、remove_transition、preview_cut、generate_transition、refine_transition |
type | add_text、update_text、add_captions_from_transcript、list_text_styles、list_fonts、search_fonts、use_font |
motion | list_motion_templates、create_motion_clip、update_motion_clip |
color | set_clip_grade、add_clip_effect、update_clip_effect、remove_clip_effect、list_luts、import_lut、set_clip_opacity、set_clip_blend |
frame | set_clip_transform、set_clip_speed |
audio | set_clip_audio、set_volume_envelope、duck_audio、analyze_audio、quantize_cuts_to_beats、isolate_voice_on_clip、measure_audio、measure_mix |
generate | generate_music、generate_sfx、generate_voiceover、clone_voice_from_clip、fix_spoken_line、generate_video |
read | get_transcript、find_repeated_takes、capture_frame、survey_footage、measure_frame、measure_clip |
remember | write_footage_notes、get_footage_notes、analyze_reference、save_style_profile、list_style_profiles、apply_style_profile |
out | delegate_research、web_search、export_video |
定价
通过 MCP 驱动时间线是免费的:你的代理自带模型。少数生成新媒体的工具(音乐、配音、生成镜头)会使用你 klo 账户的积分,代理在花费之前会被告知价格。新账户可获得 10 次免费询问。
安全说明
仅监听
127.0.0.1。不会向网络暴露任何内容。Bearer token 认证,采用恒定时间比较。可随时在 klo 设置中轮换令牌。
默认关闭。如果 klo 正在运行但连接未开启,服务器会明确告知你的代理。
语音克隆工具在应用内有同意门控。
故障排除
"klo 正在运行但未接受连接":在 klo → 设置 → 连接中打开桥接,然后将令牌复制到 KLO_MCP_TOKEN(或 HTTP 的 Authorization 头)中。
端口不同于 41720:如果首选端口被占用,klo 会回退到临时端口。始终以设置中显示的 URL 为准。
关于
此包是薄连接器;编辑器本身是 klo。连接器镜像了应用内附带的副本,其 major.minor 版本号与随附的应用版本保持一致。
常见问题
Claude Code 可以编辑视频吗? 安装了 klo 后,可以。Claude Code 连接到此服务器,即可在真实时间线上获得剪切、字幕、调色、生成音乐和配音以及 ProRes 导出功能。参见什么是代理式视频编辑。
这是 ffmpeg 封装吗? 不是。工具操作的是 klo 的时间线(波纹编辑、词间隙剪切、撤销),步骤之间不会重新编码任何内容。为什么这样设计。
我的素材会被上传吗? 不会。媒体保留在 Mac 上;服务器交换的是时间线操作和紧凑结果。详情见 klo 的隐私政策。
费用是多少? 使用自己的模型驱动时间线是免费的。生成工具使用 klo 账户积分。定价。
相关阅读
MIT(此连接器)。klo 是 klorah inc. 的产品。 getklo.com
This server cannot be installed
Maintenance
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceEnables AI agents to edit videos through natural language, providing tools for timeline editing, audio management, rendering, and more.2MIT
- FlicenseNot gradedqualityCmaintenanceEnables AI models to perform complex video editing tasks on Kdenlive projects through 36 tools for project management, timeline editing, effects, transitions, and export.1
- AlicenseNot gradedqualityBmaintenanceEnables AI agents to control video editing software (剪映/CapCut and Adobe Premiere Pro) through a unified interface, supporting operations like material import, clip splitting, subtitle addition, effects, transitions, audio mixing, and export.10MIT
- AlicenseAqualityDmaintenanceEnables AI agents to control macOS desktop apps via screenshots, mouse clicks, keyboard input, accessibility queries, and AppleScript.1113MIT
Related MCP Connectors
A real timeline video editor for AI agents: journaled edits, FFmpeg/MLT rendering, exports
Agentic video editing on real footage: cut, caption, reframe, score, and export at full quality.
Let ChatGPT, Claude & Cursor use your Mac: email, calendar, iMessage, Teams, files. Local, free.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/elvniv/klo-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server