MCP Catalogs
首页

after-effects-mcp vs filesystem

并排对比,帮你在这两个 MCP server 之间做选择。

after-effects-mcp
by Dakkshin
filesystem
by modelcontextprotocol
Stars★ 358★ 85,748
30天用量
综合分5077
官方
分类
多媒体开发者工具效率工具
本地文件系统开发者工具效率工具
实现语言JavaScriptTypeScript
最近提交2 个月前本月

after-effects-mcp · 概述

Adobe After Effects MCP 服务器,通过 ExtendScript 实现 AI 对合成、图层和动画的控制。

filesystem · 概述

功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。

after-effects-mcp · 使用场景

  • 为视频编辑师自动化 After Effects 项目创建和设置
  • 使 AI 助手能够生成动态图形和视觉效果
  • 为重复性的 After Effects 任务创建自动化工作流程

filesystem · 使用场景

  • 使 AI 模型能够读取和写入项目文件进行开发
  • 允许 Claude 或其他 MCP 客户端浏览和分析代码库
  • 为内容生成提供对特定目录的安全沙盒访问

after-effects-mcp · 安装

安装步骤

  1. 克隆仓库:
git clone https://github.com/Dakkshin/after-effects-mcp.git
cd after-effects-mcp
  1. 安装依赖:
npm install
  1. 构建项目:
npm run build
  1. 安装 After Effects 面板:
npm run install-bridge
  1. 配置 Claude Desktop:
{
  "mcpServers": {
    "AfterEffectsMCP": {
      "command": "node",
      "args": ["PATH/TO/after-effects-mcp/build/index.js"]
    }
  }
}
  1. 启动服务器:
npm start
  1. 打开 After Effects 并加载 mcp-bridge-auto.jsx 面板(窗口 > mcp-bridge-auto.jsx)

filesystem · 安装

安装

使用 NPX

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/allowed/directory"
      ]
    }
  }
}

使用 Docker

{
  "mcpServers": {
    "filesystem": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
        "mcp/filesystem",
        "/projects"
      ]
    }
  }
}

VS Code 扩展

点击 README 中的安装按钮直接在 VS Code 中安装。

对比内容由 README + GitHub 公开数据自动生成,定期更新。