MCP Catalogs
首页

touchdesigner-mcp vs everything

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

touchdesigner-mcp
by 8beeeaaat
everything
by modelcontextprotocol
Stars★ 324★ 85,748
30天用量
综合分5077
官方
分类
开发者工具多媒体AI / LLM 工具
开发者工具AI / LLM 工具其它
实现语言TypeScriptTypeScript
最近提交1 个月前本月

touchdesigner-mcp · 概述

一个MCP服务器,通过节点操作和Python脚本执行,让AI代理控制TouchDesigner。

everything · 概述

官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。

touchdesigner-mcp · 使用场景

  • AI辅助实时视觉编程
  • 自动化TouchDesigner项目工作流
  • 使用AI节点操作生成艺术作品

everything · 使用场景

  • 测试 MCP 客户端实现是否支持所有协议功能
  • 通过参考服务器学习 MCP 协议能力
  • 验证客户端对不同传输方式的兼容性

touchdesigner-mcp · 安装

安装步骤

  1. 从 [GitHub Releases](https://github.com/8beeeaaat/touchdesigner-mcp/releases/latest) 下载最新版本
  2. 解压 touchdesigner-mcp-td.zip 文件
  3. 用新内容替换现有的 touchdesigner-mcp-td 文件夹
  4. 从TouchDesigner项目中移除旧的 mcp_webserver_base 组件
  5. 导入新的 .tox 组件
  6. 启动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
对比内容由 README + GitHub 公开数据自动生成,定期更新。