touchdesigner-mcp vs mcp-server-chart
Side-by-side comparison to help you pick between these two MCP servers.
touchdesigner-mcp by 8beeeaaat | mcp-server-chart by antvis | |
|---|---|---|
| Stars | ★ 324 | ★ 4,068 |
| 30d uses | — | 10,239 |
| Score | 50 | 84 |
| Official | — | — |
| Categories | Developer ToolsMediaAI / LLM Tools | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | 1 mo ago | this month |
touchdesigner-mcp · Summary
An MCP server enabling AI agents to control TouchDesigner through node manipulation and Python script execution.
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
touchdesigner-mcp · Use cases
- AI-assisted live visual programming
- Automating TouchDesigner project workflows
- Generative art creation using AI node manipulation
mcp-server-chart · Use cases
- Data analysts creating visual reports from datasets
- AI assistants generating custom charts based on user requests
- Web applications embedding visualization capabilities via HTTP API
touchdesigner-mcp · Install
Installation
- Download the latest release from [GitHub Releases](https://github.com/8beeeaaat/touchdesigner-mcp/releases/latest)
- Extract the
touchdesigner-mcp-td.zipfile - Replace your existing
touchdesigner-mcp-tdfolder with the new contents - Remove the old
mcp_webserver_basecomponent from your TouchDesigner project - Import the new
.toxcomponent - Start TouchDesigner and ensure the WebServer DAT is running
Claude Desktop Configuration
Add to claude_desktop_config.json:
{
"mcpServers": {
"touchdesigner": {
"command": "npx",
"args": ["-y", "@8beeeaaat/touchdesigner-mcp-server@latest"]
}
}
}mcp-server-chart · Install
Installation
Install globally:
npm install -g @antv/mcp-server-chartFor Desktop Apps (e.g., Claude Desktop, VSCode):
{
"mcpServers": {
"mcp-server-chart": {
"command": "npx",
"args": ["-y", "@antv/mcp-server-chart"]
}
}
}For Windows:
{
"mcpServers": {
"mcp-server-chart": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@antv/mcp-server-chart"]
}
}
}