We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ttiimmaacc/cinema4d-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•261 B
"""Cinema 4D MCP Server - Connect Claude to Cinema 4D"""
__version__ = "0.1.0"
from . import server
def main():
"""Main entry point for the package."""
server.mcp_app.run()
def main_wrapper():
"""Entry point for the wrapper script."""
main()