MCP Catalogs
Home

touchdesigner-mcp-server vs filesystem

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

touchdesigner-mcp-server
by bottobot
filesystem
by modelcontextprotocol
Stars★ 55★ 85,748
30d uses
Score4577
Official
Categories
Developer ToolsMediaAI / LLM Tools
File SystemDeveloper ToolsProductivity
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.

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

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

filesystem · Use cases

  • Enable AI models to read and write project files during development
  • Allow Claude or other MCP clients to browse and analyze codebases
  • Provide secure sandboxed access to specific directories for content generation

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"]
  }
}

filesystem · Install

Installation

Using NPX

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/allowed/directory"
      ]
    }
  }
}

Using 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 Extension

Click the installation buttons in the README to install directly in VS Code.

Comparison generated from public README + GitHub signals. Last updated automatically.