MCP Catalogs
Home

everything vs cinema4d-mcp

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

everything
by modelcontextprotocol
cinema4d-mcp
by ttiimmaacc
Stars★ 85,748★ 83
30d uses
Score7746
Official
Categories
Developer ToolsAI / LLM ToolsOther
MediaDeveloper ToolsAI / LLM Tools
LanguageTypeScriptPython
Last committhis month2 mo ago

everything · Summary

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

cinema4d-mcp · Summary

MCP server connecting Claude AI to Cinema 4D for prompt-driven 3D modeling and scene manipulation.

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

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

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

cinema4d-mcp · Install

Installation

Clone the Repository

git clone https://github.com/ttiimmaacc/cinema4d-mcp.git
cd cinema4d-mcp

Install the MCP Server Package

pip install -e .

Make the Wrapper Script Executable

chmod +x bin/cinema4d-mcp-wrapper

Cinema 4D Plugin Setup

  1. Copy the c4d_plugin/mcp_server_plugin.pyp file to Cinema 4D's plugin folder
  2. 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"]
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.