mcp-server-chart vs cinema4d-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | cinema4d-mcp by ttiimmaacc | |
|---|---|---|
| Stars | ★ 4,068 | ★ 83 |
| 30d uses | 10,239 | — |
| Score | 84 | 46 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | MediaDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | Python |
| Last commit | this month | 2 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
cinema4d-mcp · Summary
MCP server connecting Claude AI to Cinema 4D for prompt-driven 3D modeling and scene 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
cinema4d-mcp · Use cases
- AI-assisted 3D modeling using natural language prompts
- Automated scene generation and manipulation for motion graphics
- Integration of AI creativity with professional 3D workflows
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"]
}
}
}cinema4d-mcp · Install
Installation
Clone the Repository
git clone https://github.com/ttiimmaacc/cinema4d-mcp.git
cd cinema4d-mcpInstall the MCP Server Package
pip install -e .Make the Wrapper Script Executable
chmod +x bin/cinema4d-mcp-wrapperCinema 4D Plugin Setup
- Copy the
c4d_plugin/mcp_server_plugin.pypfile to Cinema 4D's plugin folder - Open Cinema 4D, go to Extensions > Socket Server Plugin > Start Server
Claude Desktop Configuration
Add to your claude_desktop_config.json:
"mcpServers": {
"cinema4d": {
"command": "python3",
"args": ["/path/to/cinema4d-mcp/main.py"]
}
}