
mcp-server
by plainly-videos·★ 6·综合分 39
官方 Plainly Videos API 的 MCP 服务器,通过 LLM 客户端实现 After Effects 自动化。
概述
这是一个生产就绪的 MCP 服务器,将 LLM 客户端连接到 Plainly Videos API 以实现视频自动化。它提供四个主要功能:列出可渲染项目、获取项目详情、提交渲染任务和检查渲染状态。该实现文档完善,包含了 npm 和 Smithery 安装方式的清晰设置说明。虽然目前不包括 prompts 或 resources,但它通过最近的提交积极维护代码库。
试试问 AI
装完之后,这里有 5 个你可以让 AI 做的事:
什么时候选它
如果您已经在使用或计划使用 Plainly Videos 进行视频自动化,并希望将其与 LLM 代理集成,请选择此服务器。
什么时候不要选它
如果您需要其他平台的视频自动化功能,或者不愿意依赖单一供应商的 API,请不要选择此服务器。
此 server 暴露的工具
从 README 抽取出 4 个工具list_renderable_itemsreturns a list of all criteria matching designs and custom projects for authenticated user
get_renderable_items_detailsreturns details of a single design or custom project, such as: required and optional parameters, preview links, aspect ratios, etc.
render_itemsubmits a render with all needed parameters
check_render_statuschecks the render status and report error or preview links
可对比工具
安装
安装
通过 npm
- 从 [设置页面](https://app.plainlyvideos.com/dashboard/user/settings/general) 获取您的 Plainly API 密钥
- 将配置添加到您的编辑器中:
{
"servers": {
"plainly": {
"command": "npx",
"args": ["-y", "@plainly-videos/mcp-server@latest"],
"env": {
"PLAINLY_API_KEY": "<PLAINLY_API_KEY>"
}
}
}
}通过 Smithery
npx -y @smithery/cli@latest install @plainly-videos/mcp-server --client claude --key <YOUR_SMITHERY_KEY>FAQ
- 这个 MCP 服务器有什么用途?
- 这个 MCP 服务器允许 LLM 客户端与 Plainly Videos API 交互,用于视频自动化,特别是 Adobe After Effects 项目。
- 它支持 prompts 和 resources 吗?
- 目前,这个实现只包含工具,不包括 MCP 规范中的 prompts 或 resources。当有更广泛的支持时,这可能会在将来改变。
mcp-server 对比
最后更新于 · 由 README + GitHub 公开数据自动生成。