touchdesigner-mcp-server vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
touchdesigner-mcp-server by bottobot | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 55 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 45 | 77 |
| 官方 | — | ✓ |
| 分类 | 开发者工具多媒体AI / LLM 工具 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | HTML | TypeScript |
| 最近提交 | 3 个月前 | 本月 |
touchdesigner-mcp-server · 概述
TouchDesigner 完整 MCP 服务器,提供 629 个操作符和 69 个 Python 类的文档和教程。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
touchdesigner-mcp-server · 使用场景
- 借助 AI 开发复杂的 TouchDesigner 视觉网络
- 通过交互式教程和学习操作符文档掌握 TouchDesigner
- 通过 LLM 集成为 TouchDesigner 自动化生成 Python 脚本
- 使用版本筛选搜索操作符和 Python API 方法
- 比较 TouchDesigner 操作符以选择最适合特定任务的工具
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
touchdesigner-mcp-server · 安装
全局安装(推荐)
npm install -g @bottobot/td-mcp本地安装
npm install @bottobot/td-mcp在 Claude Desktop 中使用
将以下配置添加到 Claude Desktop 配置文件中:
{
"td-mcp": {
"command": "npx",
"args": ["@bottobot/td-mcp"]
}
}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