touchdesigner-mcp vs filesystem
并排对比,帮你在这两个 MCP server 之间做选择。
touchdesigner-mcp by 8beeeaaat | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 324 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 50 | 77 |
| 官方 | — | ✓ |
| 分类 | 开发者工具多媒体AI / LLM 工具 | 本地文件系统开发者工具效率工具 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 1 个月前 | 本月 |
touchdesigner-mcp · 概述
一个MCP服务器,通过节点操作和Python脚本执行,让AI代理控制TouchDesigner。
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
touchdesigner-mcp · 使用场景
- AI辅助实时视觉编程
- 自动化TouchDesigner项目工作流
- 使用AI节点操作生成艺术作品
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
touchdesigner-mcp · 安装
安装步骤
- 从 [GitHub Releases](https://github.com/8beeeaaat/touchdesigner-mcp/releases/latest) 下载最新版本
- 解压
touchdesigner-mcp-td.zip文件 - 用新内容替换现有的
touchdesigner-mcp-td文件夹 - 从TouchDesigner项目中移除旧的
mcp_webserver_base组件 - 导入新的
.tox组件 - 启动TouchDesigner并确保WebServer DAT正在运行
Claude Desktop配置
添加到 claude_desktop_config.json:
{
"mcpServers": {
"touchdesigner": {
"command": "npx",
"args": ["-y", "@8beeeaaat/touchdesigner-mcp-server@latest"]
}
}
}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 中安装。