touchdesigner-mcp vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
touchdesigner-mcp by 8beeeaaat | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 324 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 50 | 77 |
| 官方 | — | ✓ |
| 分类 | 开发者工具多媒体AI / LLM 工具 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 1 个月前 | 本月 |
touchdesigner-mcp · 概述
一个MCP服务器,通过节点操作和Python脚本执行,让AI代理控制TouchDesigner。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
touchdesigner-mcp · 使用场景
- AI辅助实时视觉编程
- 自动化TouchDesigner项目工作流
- 使用AI节点操作生成艺术作品
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 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"]
}
}
}everything · 安装
NPX(推荐)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}Windows 用户请使用 cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}全局安装
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything