MCP Catalogs
Home

touchdesigner-mcp-server vs everything

Side-by-side comparison to help you pick between these two MCP servers.

touchdesigner-mcp-server
by bottobot
everything
by modelcontextprotocol
Stars★ 55★ 85,748
30d uses
Score4577
Official
Categories
Developer ToolsMediaAI / LLM Tools
Developer ToolsAI / LLM ToolsOther
LanguageHTMLTypeScript
Last commit3 mo agothis month

touchdesigner-mcp-server · Summary

Comprehensive MCP server for TouchDesigner documentation, tutorials, and Python API with 629 operators and 69 Python classes.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

touchdesigner-mcp-server · Use cases

  • Developing complex visual networks in TouchDesigner with AI assistance
  • Learning TouchDesigner through interactive tutorials and operator documentation
  • Generating Python scripts for TouchDesigner automation via LLM integration
  • Searching for operators and Python API methods with version filtering
  • Comparing TouchDesigner operators to select the best one for a specific task

everything · Use cases

  • Testing MCP client implementations against all protocol features
  • Learning MCP protocol capabilities through a reference server
  • Validating client compatibility with different transport methods

touchdesigner-mcp-server · Install

Global Installation (Recommended)

npm install -g @bottobot/td-mcp

Local Installation

npm install @bottobot/td-mcp

Using with Claude Desktop

Add the following to your Claude Desktop configuration:

{
  "td-mcp": {
    "command": "npx",
    "args": ["@bottobot/td-mcp"]
  }
}

everything · Install

NPX (recommended)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

On Windows, use cmd /c:

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

Global install

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything
Comparison generated from public README + GitHub signals. Last updated automatically.