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 | — | — |
| Score | 45 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsMediaAI / LLM Tools | Developer ToolsAI / LLM ToolsOther |
| Language | HTML | TypeScript |
| Last commit | 3 mo ago | this 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-mcpLocal Installation
npm install @bottobot/td-mcpUsing 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