Skip to main content
Glama
YihonW

mcp-c4d-2025

by YihonW

Call C4D Command

call_command

Execute any Cinema 4D command by its plugin ID, from rendering to saving or making objects editable. Use this to trigger built-in or plugin commands when you know the command ID.

Instructions

Invoke a Cinema 4D command by plugin id via c4d.CallCommand(). Works for built-in commands (render, save, make editable, ...) and any registered command plugin.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
subidNoOptional sub-id (rarely needed).
command_idYesCinema 4D command id. Examples: 12099 = Render to Picture Viewer, 12161 = Save Document, 12236 = Make Editable, 12168 = New Document. Use list_plugins (plugin_type="command") to discover.
timeout_msNoRequest timeout in ms (default 60000). CallCommand often runs synchronously; increase for long-running ones like Render.

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observedv0.5.0

TDQS

A3.5/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure, but it only says 'Invoke' and names the API. It does not warn that many commands mutate the scene, may block the main thread, may open UI, or may have no meaningful return value. The synchronous behavior is only mentioned in the timeout parameter description, not in the tool description.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, front-loaded sentence that states the action, the target resource, the mechanism, and the scope of supported commands with useful examples. There is no wasted text.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description and schema together cover the command_id, subid, timeout, and discovery path, which is enough to make a basic call. However, because there are no annotations and no output schema, the description leaves the agent uncertain about side effects, return values, and failure modes for a potentially mutating call.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema fully documents command_id with examples and discovery guidance, plus subid and timeout_ms. The description adds little beyond saying 'by plugin id', so a baseline score of 3 is appropriate because the schema handles the semantic load.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('Invoke') and names the exact resource ('Cinema 4D command by plugin id') and mechanism ('via c4d.CallCommand()'). It clearly differentiates this generic command invoker from specialized siblings like render or save_document by emphasizing the plugin-id/CallCommand path.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage for built-in commands and registered command plugins, and gives examples like render, save, and make editable. However, it does not explicitly state when to prefer this tool over dedicated siblings such as render or save_document, nor does it state when not to use it.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/YihonW/mcp-c4d-2025'

If you have feedback or need assistance with the MCP directory API, please join our Discord server