MCP Catalogs
首页

filesystem vs cinema4d-mcp

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

filesystem
by modelcontextprotocol
cinema4d-mcp
by ttiimmaacc
Stars★ 85,748★ 83
30天用量
综合分7746
官方
分类
本地文件系统开发者工具效率工具
多媒体开发者工具AI / LLM 工具
实现语言TypeScriptPython
最近提交本月2 个月前

filesystem · 概述

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

cinema4d-mcp · 概述

将 Claude AI 连接到 Cinema 4D 的 MCP 服务器,支持提示驱动的 3D 建模和场景操作。

filesystem · 使用场景

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

cinema4d-mcp · 使用场景

  • 使用自然语言提示进行 AI 辅助 3D 建模
  • 动态图形的自动化场景生成和操作
  • AI 创意与专业 3D 工作流程的集成

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 中安装。

cinema4d-mcp · 安装

安装步骤

克隆仓库

git clone https://github.com/ttiimmaacc/cinema4d-mcp.git
cd cinema4d-mcp

安装 MCP 服务器包

pip install -e .

使包装脚本可执行

chmod +x bin/cinema4d-mcp-wrapper

Cinema 4D 插件设置

  1. c4d_plugin/mcp_server_plugin.pyp 文件复制到 Cinema 4D 的插件文件夹
  2. 打开 Cinema 4D,转到 Extensions > Socket Server Plugin > Start Server

Claude Desktop 配置

添加到你的 claude_desktop_config.json

"mcpServers": {
  "cinema4d": {
    "command": "python3",
    "args": ["/path/to/cinema4d-mcp/main.py"]
  }
}
对比内容由 README + GitHub 公开数据自动生成,定期更新。