Skip to main content
Glama

Run a sequential render queue

keyshot_render_queue
Destructive

Queue KeyShot render jobs to run in sequence, avoiding license contention and output file overwrites.

Instructions

Render independent scene and camera jobs sequentially so KeyShot processes do not compete for a license or output files.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
jobsYesRender jobs executed sequentially to avoid KeyShot license and output conflicts.
continueOnErrorNoContinue with later jobs after a failure. Defaults to false.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
okYesTrue when the requested operation completed successfully.
dataNoOperation-specific structured result data, or null when unavailable.
errorYesHuman-readable failure reason, or null after success.
warningsYesNon-fatal conditions the user or agent should review.
errorCodeNoStable error category for common failures.
outputFilesYesAbsolute paths of images or scene files created by the operation.
suggestionsNoActionable recovery steps for the user or agent.
keyshotStdoutTailYesTruncated tail of KeyShot headless output for diagnostics.

Schema Changelog

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

  1. Changed12 schema fields changedv0.10.0
    • addedInput schema / properties / continueOnError / description
      Added value: +"Continue with later jobs after a failure. Defaults to false."
    • addedInput schema / properties / jobs / description
      Added value: +"Render jobs executed sequentially to avoid KeyShot license and output conflicts."
    • addedInput schema / properties / jobs / items / properties / camera / description
      Added value: +"Optional saved camera name for this job. Omit to use the active camera."
    • addedInput schema / properties / jobs / items / properties / format / description
      Added value: +"Output image format. Defaults to PNG when omitted."
    • addedInput schema / properties / jobs / items / properties / height / description
      Added value: +"Render height in pixels. Overrides the selected quality preset when provided."
    • addedInput schema / properties / jobs / items / properties / maxTimeSeconds / description
      Added value: +"Maximum render time in seconds. Selects time-based rendering and cannot be combined with samples."
    • addedInput schema / properties / jobs / items / properties / outputPath / description
      Added value: +"Destination image path for this queue job. A safe output name is generated when omitted."
    • addedInput schema / properties / jobs / items / properties / qualityPreset
      Added value: +{
      +  "description": "Render quality preset: preview (960x540, 16 samples), standard (1920x1080, 64 samples), or final (3840x2160, 256 samples).",
      +  "enum": [
      +    "preview",
      +    "standard",
      +    "final"
      +  ],
      +  "type": "string"
      +}
    • addedInput schema / properties / jobs / items / properties / samples / description
      Added value: +"Maximum render samples. Cannot be combined with maxTimeSeconds and overrides preset sampling when provided."
    • addedInput schema / properties / jobs / items / properties / scenePath / description
      Added value: +"Absolute path to an existing KeyShot scene file to open. Input files may be outside the configured output directory."
    • addedInput schema / properties / jobs / items / properties / width / description
      Added value: +"Render width in pixels. Overrides the selected quality preset when provided."
    • changedOutput schema / (root)
      Previous value: -nullNew value: +{
      +  "$schema": "http://json-schema.org/draft-07/schema#",
      +  "additionalProperties": false,
      +  "properties": {
      +    "data": {
      +      "anyOf": [
      +        {},
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "description": "Operation-specific structured result data, or null when unavailable."
      +    },
      +    "error": {
      +      "description": "Human-readable failure reason, or null after success.",
      +      "type": [
      +        "string",
      +        "null"
      +      ]
      +    },
      +    "errorCode": {
      +      "description": "Stable error category for common failures.",
      +      "type": [
      +        "string",
      +        "null"
      +      ]
      +    },
      +    "keyshotStdoutTail": {
      +      "description": "Truncated tail of KeyShot headless output for diagnostics.",
      +      "type": "string"
      +    },
      +    "ok": {
      +      "description": "True when the requested operation completed successfully.",
      +      "type": "boolean"
      +    },
      +    "outputFiles": {
      +      "description": "Absolute paths of images or scene files created by the operation.",
      +      "items": {
      +        "type": "string"
      +      },
      +      "type": "array"
      +    },
      +    "suggestions": {
      +      "description": "Actionable recovery steps for the user or agent.",
      +      "items": {
      +        "type": "string"
      +      },
      +      "type": "array"
      +    },
      +    "warnings": {
      +      "description": "Non-fatal conditions the user or agent should review.",
      +      "items": {
      +        "type": "string"
      +      },
      +      "type": "array"
      +    }
      +  },
      +  "required": [
      +    "ok",
      +    "outputFiles",
      +    "warnings",
      +    "keyshotStdoutTail",
      +    "error"
      +  ],
      +  "type": "object"
      +}
  2. Addedv0.4.0

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already declare destructiveHint=true and readOnlyHint=false. The description adds the key behavioral detail that processing is sequential to avoid KeyShot license and output file competition, going beyond what annotations provide. The potential to overwrite output files is implied by the warning about output files, though not explicitly stated.

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 with no filler. Every word contributes to explaining the tool's purpose and rationale.

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

Completeness4/5

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

The description covers the core behavior (sequential rendering of independent jobs) and the rationale (avoiding conflicts). With an output schema present and rich input schemas for each job, the description does not need to explain return values or all parameters. It is complete for the tool's primary function, though it could briefly mention the continueOnError option, which is already described in the schema.

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?

Schema description coverage is 100%, so the baseline is 3. The description does not elaborate on any individual parameters; it only states that jobs are independent scene and camera jobs, which is already captured in the schema. No additional semantic meaning beyond the schema is provided.

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 the specific verb 'Render' with the resource 'independent scene and camera jobs' and the mode 'sequentially', clearly distinguishing it from parallel rendering tools like keyshot_batch_render. The purpose is unambiguous.

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

Usage Guidelines4/5

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

The description states that jobs are rendered sequentially to avoid license and output file conflicts, implying this tool is for use when multiple independent render jobs could interfere. It does not explicitly name alternative tools, but the context is clear enough for an agent to infer appropriate use.

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/truman-t3/keyshot-mcp'

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