Skip to main content
Glama
8beeeaaat

TouchDesigner MCP

by 8beeeaaat

TouchDesigner MCP

Version Downloads

This is an implementation of an MCP (Model Context Protocol) server for TouchDesigner. Its goal is to enable AI agents to control and operate TouchDesigner projects.

English / 日本語

Overview

demo clip

TouchDesigner MCP acts as a bridge between AI models and the TouchDesigner WebServer DAT, enabling AI agents to:

  • Create, modify, and delete nodes

  • Query node properties and project structure

  • Programmatically control TouchDesigner via Python scripts

Related MCP server: td-mcp

Installation

Please refer to the Installation Guide.

If you are updating, please refer to the procedure in the Latest Release.

MCP Server Features

This server enables AI agents to perform operations in TouchDesigner using the Model Context Protocol (MCP).

Tools

Tools allow AI agents to perform actions in TouchDesigner.

Tool Name

Description

create_td_node

Creates a new node.

delete_td_node

Deletes an existing node.

describe_td_tools

Generates a manifest of the available TouchDesigner tools.

exec_node_method

Calls a Python method on a node.

execute_python_script

Executes an arbitrary Python script in TouchDesigner.

get_td_class_details

Gets details of a TouchDesigner Python class or module.

get_td_classes

Gets a list of TouchDesigner Python classes.

get_td_info

Gets information about the TouchDesigner server environment.

get_td_module_help

Gets Python help() documentation for TouchDesigner modules/classes.

get_td_node_errors

Checks for errors on a specified node and its children.

get_td_node_parameters

Gets the parameters of a specific node.

get_td_nodes

Gets nodes under a parent path, with optional filtering.

get_top_image

Captures the current output of a TOP node as an image.

update_td_node_parameters

Updates the parameters of a specific node.

Prompts

Prompts provide instructions for AI agents to perform specific actions in TouchDesigner.

Prompt Name

Description

Search node

Fuzzy searches for nodes and retrieves information based on name, family, or type.

Node connection

Provides instructions to connect nodes within TouchDesigner.

Check node errors

Checks for errors on a specified node, and recursively for its children.

Resources

Not implemented.

Developer Guide

Looking for local setup, client configuration, project structure, or release workflow notes? See the Developer Guide for all developer-facing documentation.

Troubleshooting

Troubleshooting version compatibility

The MCP server and the TouchDesigner component are versioned on two independent axes: the npm package version and the API version (the contract between the MCP server and the .tox component). Each release declares the API version it ships with (expectedApiVersion) and the minimum it supports (minApiVersion, currently 1.3.0). The connected component's API version is compared against those two values — the npm package version itself never gates compatibility, so updating the MCP server alone never invalidates a supported component.

API Server (component)

Condition

Behavior

Status

= expected API version

Matches the shipped .tox

✅ Works silently

Compatible

≥ minimum, < expected

Older component

⚠️ "Update Recommended" notice appended to responses, continues

Warning

> expected, same MAJOR

Newer component

⚠️ Warning to update the MCP server, continues

Warning

MAJOR above expected

Newer API generation

❌ Execution stops — update the MCP server

Error

< minimum (or missing)

Too old

❌ Execution stops — update the component

Error

  • To resolve compatibility errors:

    1. Download the latest touchdesigner-mcp-td.zip from the releases page.

    2. Delete the existing touchdesigner-mcp-td folder and replace it with the newly extracted contents.

    3. Remove the old mcp_webserver_base component from your TouchDesigner project and import the .tox from the new folder.

    4. Restart TouchDesigner and the AI agent running the MCP server (e.g., Claude Desktop).

  • For developers: When developing locally, run npm run version after editing package.json (or simply use npm version ...). This keeps the Python API (pyproject.toml + td/modules/utils/version.py), mcpCompatibility.expectedApiVersion, MCP bundle manifest, and registry metadata in sync so that the runtime compatibility check succeeds.

For a deeper look at how the MCP server enforces these rules, see Version Compatibility Verification.

Troubleshooting connection errors

  • TouchDesignerClient caches failed connection checks for 60 seconds. Subsequent tool calls reuse the cached error to avoid spamming TouchDesigner and automatically retry after the TTL expires.

  • When the MCP server cannot reach TouchDesigner, you now get guided error messages with concrete fixes:

    • ECONNREFUSED / "connect refused": start TouchDesigner, ensure the WebServer DAT from mcp_webserver_base.tox is running, and confirm the configured port (default 9981).

    • ETIMEDOUT / "timeout": TouchDesigner is responding slowly or the network is blocked. Restart TouchDesigner/WebServer DAT or check your network connection.

    • ENOTFOUND / getaddrinfo: the host name is invalid. Use 127.0.0.1 unless you explicitly changed it.

  • The structured error text is also logged through ILogger, so you can check the MCP logs to understand why a request stopped before hitting TouchDesigner.

  • Once the underlying issue is fixed, simply run the tool again—the client clears the cached error and re-verifies the connection automatically.

Contributing

We welcome your contributions!

  1. Fork the repository.

  2. Create a feature branch (git checkout -b feature/amazing-feature).

  3. Make your changes.

  4. Add tests and ensure everything works (npm test).

  5. Commit your changes (git commit -m 'Add some amazing feature').

  6. Push to your branch (git push origin feature/amazing-feature).

  7. Open a pull request.

Please always include appropriate tests when making implementation changes.

License

MIT

Available Tools

14 tools
create_td_nodeC

Create a new node in TouchDesigner

ParametersJSON Schema
NameRequiredDescriptionDefault
nodeNameNoName of the new node (optional)
nodeTypeYesType of the node to create (e.g., textTop)
parentPathYesPath to the parent node (e.g., /project1)
detailLevelNoResponse detail level for tool output (minimal, summary, or detailed)
responseFormatNoStructured output format for formatted responses

TDQS

C2.4/5.0
Behavior1/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 states 'Create' without any details on side effects, permissions, error conditions, or what happens on duplicate nodes. This is insufficient for a mutation tool.

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

Conciseness2/5

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

The description is extremely concise (one short sentence), but it omits critical information. Conciseness should not come at the cost of completeness; here it is under-specified.

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

Completeness1/5

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

Given 5 parameters, no output schema, and no annotations, the description provides virtually no contextual information about the tool's behavior, limitations, or expected outcomes. It is grossly incomplete.

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 coverage is 100%, so the baseline is 3. The description adds no additional meaning beyond the schema; it does not explain any parameter interactions or constraints.

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

Purpose4/5

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

The description clearly states the verb 'Create' and resource 'new node' in the context of TouchDesigner, making the basic purpose understandable. However, it does not differentiate from sibling tools like update or delete.

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

Usage Guidelines2/5

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

No guidance is provided on when to use this tool versus alternatives. There is no mention of prerequisites, when not to use it, or any contextual hints for selection.

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

delete_td_nodeB

Delete an existing node in TouchDesigner

ParametersJSON Schema
NameRequiredDescriptionDefault
nodePathYesPath to the node to delete. e.g., "/project1/geo1"
detailLevelNoResponse detail level for tool output (minimal, summary, or detailed)
responseFormatNoStructured output format for formatted responses

TDQS

B3.1/5.0
Behavior2/5

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

With no annotations, the description carries full burden but only states the action. It does not disclose behavioral traits such as whether deletion is irreversible, impact on connected nodes, or required permissions.

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

Conciseness4/5

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

The description is a single sentence that gets straight to the point. It is concise, though it could include more detail without becoming verbose.

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

Completeness2/5

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

Without output schema or annotation disclosures, the description lacks completeness. For a destructive tool, it fails to explain consequences like cascading deletions or error handling, which is insufficient for reliable agent use.

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 baseline is 3. The description adds no extra meaning beyond what the schema already provides for all three parameters.

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 'Delete' and clearly identifies the resource as 'an existing node in TouchDesigner'. This distinguishes it from sibling tools like create, update, and get operations.

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

Usage Guidelines2/5

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

No guidance is provided on when to use this tool versus alternatives like update_td_node_parameters or create_td_node. There is no mention of prerequisites, conditions, or when not to use deletion.

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

describe_td_toolsC

Generate a filesystem-oriented manifest of available TouchDesigner tools

ParametersJSON Schema
NameRequiredDescriptionDefault
filterNoOptional keyword to filter by tool name, module path, or parameter description
detailLevelNoResponse detail level for tool output (minimal, summary, or detailed)
responseFormatNoStructured output format for formatted responses

TDQS

C2.8/5.0
Behavior2/5

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

With no annotations, the description bears full responsibility for behavioral disclosure. It only states the basic purpose but omits crucial traits such as being read-only, any side effects, auth needs, or what 'manifest' entails (list vs. structured output). Given the lack of annotations, this is insufficient.

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

Conciseness3/5

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

The description is very short (one sentence), which is concise but borderline under-specified. It front-loads the action but leaves many details to the schema, making it slightly too terse for the tool's complexity.

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

Completeness2/5

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

Given three parameters, no output schema, and many sibling tools, the description lacks completeness. It does not explain the meaning of 'filesystem-oriented,' how filtering works, or what the output looks like. The agent would likely need to test or infer missing context.

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 coverage is 100%—all three parameters have descriptions. The tool description adds no extra meaning beyond the schema, so the baseline 3 is appropriate. It neither enhances nor harms clarity.

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

Purpose4/5

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

The description clearly states it generates a 'filesystem-oriented manifest of available TouchDesigner tools,' which conveys the core action and resource. However, it does not elaborate on what 'filesystem-oriented' means or differentiate it from sibling tools like 'get_td_info' or 'get_td_classes', so it stops short of a 5.

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

Usage Guidelines2/5

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

The description provides no guidance on when to use this tool versus siblings, nor does it mention prerequisites, scenarios, or exclusions. The agent must infer usage from the tool name alone.

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

exec_node_methodB

Execute a method on a specific node in TouchDesigner

ParametersJSON Schema
NameRequiredDescriptionDefault
argsNoList of arguments for the method call
kwargsNoKeyword arguments for the method call
methodYesName of the method to call
nodePathYesPath to the node (e.g., /project1/null1)
detailLevelNoResponse detail level for tool output (minimal, summary, or detailed)
responseFormatNoStructured output format for formatted responses

TDQS

B3/5.0
Behavior2/5

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

No annotations are provided, and the description does not disclose behavioral traits such as potential destructiveness, required permissions, or error handling. The tool executes methods on nodes, which could modify state, but the description is silent on this.

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

Conciseness3/5

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

The description is very concise (one sentence), but it lacks sufficient detail to fully inform usage. It is not overly verbose, but it sacrifices completeness for brevity.

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

Completeness2/5

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

Given the complexity (6 parameters, 2 with enums, nested objects), the description is insufficient. It does not mention output format, return values, or usage context, and there is no output schema to compensate.

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 parameters are documented in the schema. However, the tool description adds no extra meaning or context about how parameters interact (e.g., how args and kwargs work together).

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?

Description clearly states the action (Execute) and the resource (a method on a specific node in TouchDesigner). It is distinct from sibling tools like create_td_node or execute_python_script, which have different purposes.

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

Usage Guidelines2/5

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

No guidance is provided on when to use this tool versus alternatives. For example, it does not explain when to use exec_node_method instead of execute_python_script or how to choose the appropriate node method.

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

execute_python_scriptC

Execute a Python script in TouchDesigner (detailLevel=minimal|summary|detailed, responseFormat=json|yaml|markdown)

ParametersJSON Schema
NameRequiredDescriptionDefault
scriptYese.g., "op('/project1/text_over_image').outputConnectors[0].connect(op('/project1/out1'))"
detailLevelNoResponse detail level for tool output (minimal, summary, or detailed)
responseFormatNoStructured output format for formatted responses

TDQS

C2.9/5.0
Behavior1/5

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

No annotations are provided, so the description carries the full burden. It only says 'Execute a Python script' with no mention of side effects, authorization needs, return values, or error behavior. This is insufficient for a tool that modifies state.

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

Conciseness4/5

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

The description is a single sentence with parenthetical enumerations, very concise and front-loaded. However, it could benefit from slightly more context without becoming verbose.

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

Completeness2/5

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

The description is too minimal given the complexity of a Python script execution tool. It lacks details on output format (though parameters address it), error handling, execution environment, and potential side effects. No output schema exists to compensate.

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 coverage is 100% with descriptions for all parameters. The tool description lists the enums but does not add extra meaning beyond what is in the schema. Baseline 3 is appropriate.

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 clearly states 'Execute a Python script in TouchDesigner', which is a specific verb-resource combination. It distinguishes from sibling tools that deal with nodes or info, not Python execution.

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

Usage Guidelines2/5

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

No guidance on when to use this tool versus alternatives like exec_node_method or get_td_info. The description does not provide any context or exclusions.

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

get_td_class_detailsC

Get information about a TouchDesigner class/module (detailLevel+limit supported)

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum number of items to include in formatted output
classNameYesName of the class or module. e.g., "textTOP"
detailLevelNoResponse detail level for tool output (minimal, summary, or detailed)
responseFormatNoStructured output format for formatted responses

TDQS

C2.9/5.0
Behavior2/5

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

With no annotations provided, the description carries full burden for behavioral disclosure. It only states 'Get information', implying a read operation, but does not reveal any behavioral traits such as side effects, authorization needs, or performance characteristics. The lack of detail leaves the agent guessing about safety and constraints.

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, short sentence that communicates the core purpose and highlights key parameters. It is front-loaded with the essential action and resource, with no wasted words.

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

Completeness2/5

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

Despite full schema coverage, the description lacks information about the return value or output format. Without an output schema, the agent is left uncertain about what 'information' is provided. The description does not compensate for this gap, making it incomplete for an agent to fully understand the tool's behavior.

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 coverage is 100%, providing full parameter details. The description adds 'detailLevel+limit supported', which is redundant given the schema. It does not add new meaning beyond what the parameter descriptions already convey, so baseline 3 is appropriate.

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

Purpose4/5

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

The description clearly states the verb 'Get' and the resource 'information about a TouchDesigner class/module', making the purpose straightforward. It distinguishes from sibling tools like 'get_td_classes' which lists all classes, and 'get_td_module_help' which provides help, by focusing on a specific class. However, it could be more specific about what 'information' entails.

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

Usage Guidelines2/5

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

The description provides no explicit guidance on when to use this tool versus alternatives like 'get_td_classes' or 'get_td_module_help'. It only implies use when details of a specific class are needed, but lacks exclusions or context about prerequisites or appropriate scenarios.

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

get_td_classesA

List TouchDesigner Python classes/modules (detailLevel+limit supported)

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum number of items to include in formatted output
detailLevelNoResponse detail level for tool output (minimal, summary, or detailed)
responseFormatNoStructured output format for formatted responses

TDQS

A3.7/5.0
Behavior3/5

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

No annotations are provided, so the description carries the burden. It mentions 'detailLevel+limit supported', hinting at customization, but does not disclose read-only nature, auth requirements, rate limits, or what happens with no results. For a list operation, this is adequate but not thorough.

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 wasted words. It conveys the core purpose and key parameters efficiently.

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?

With no output schema, the description could add context about return format or usage examples. Currently it is minimal but sufficient for a simple list tool. It covers the basic functionality but lacks details on error handling or pagination (though limit is a param).

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 coverage is 100%, so the schema already describes all three parameters. The description adds 'detailLevel+limit supported', which is redundant with the schema. Baseline 3 is appropriate as the description does not provide additional meaning beyond the schema.

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 clearly states the verb 'List' and the resource 'TouchDesigner Python classes/modules'. It distinguishes from sibling tools like get_td_class_details (single class) and get_td_nodes (different resource type).

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 listing classes/modules but does not explicitly state when to use this tool versus alternatives like get_td_class_details for detailed info on a single class. No exclusions or context are provided.

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

get_td_infoB

Get server information from TouchDesigner

ParametersJSON Schema
NameRequiredDescriptionDefault
detailLevelNoResponse detail level for tool output (minimal, summary, or detailed)
responseFormatNoStructured output format for formatted responses

TDQS

B3.1/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden. It only states the tool's purpose without disclosing any behavioral traits such as whether it is read-only, requires authorization, or has any side effects.

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

Conciseness4/5

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

The description is a single, concise sentence with no unnecessary words. However, it is too brief to be fully informative, earning a high score for efficiency but not maximum for substance.

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

Completeness2/5

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

Given no annotations and no output schema, and the tool having parameters for output formatting, the description is insufficient. It does not explain what 'server information' includes or how to use the detail and format parameters effectively.

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% with both parameters already described. The tool description adds no additional meaning beyond what the schema provides, so the baseline score of 3 is appropriate.

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 'Get server information from TouchDesigner' clearly states the verb 'Get' and the resource 'server information', distinguishing it from sibling tools like 'get_td_class_details' or 'get_td_nodes' which target different data types.

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

Usage Guidelines2/5

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

The description provides no guidance on when to use this tool versus alternatives, nor does it mention any prerequisites or exclusions. An agent would have no context for selecting this tool over similar ones.

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

get_td_module_helpC

Retrieve Python help() text for a TouchDesigner module or class

ParametersJSON Schema
NameRequiredDescriptionDefault
moduleNameYesModule or class name (e.g., "noiseCHOP", "td.noiseCHOP", "tdu").
detailLevelNoResponse detail level for tool output (minimal, summary, or detailed)
responseFormatNoStructured output format for formatted responses

TDQS

C2.9/5.0
Behavior2/5

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

With no annotations, the description carries the full burden of behavioral disclosure. It only states the basic purpose and does not mention whether the operation is read-only, any side effects, required permissions, or what happens on errors.

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

Conciseness4/5

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

The description is a single sentence with no superfluous words. It is front-loaded but could be slightly more informative without losing conciseness.

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

Completeness2/5

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

Despite having 3 parameters and no output schema, the description fails to explain the return format, typical output structure, or any limitations. It is too minimal to fully guide an agent on what to expect.

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 schema already documents all parameters. The tool description adds no additional meaning beyond the schema's parameter descriptions, meeting the baseline expectation of 3.

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

Purpose4/5

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

The description clearly states the verb (Retrieve) and resource (Python help() text for a TouchDesigner module or class). It is specific enough to differentiate from sibling tools like get_td_class_details, though it does not explicitly mention alternatives.

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

Usage Guidelines2/5

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

No guidance is provided on when to use this tool versus its siblings (e.g., get_td_class_details, describe_td_tools). The description lacks any contextual cues about appropriate use cases or prerequisites.

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

get_td_node_errorsC

Check node and descendant errors reported by TouchDesigner

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum number of items to include in formatted output
nodePathYesAbsolute path to the node to inspect. e.g., "/project1/text1"
detailLevelNoResponse detail level for tool output (minimal, summary, or detailed)
responseFormatNoStructured output format for formatted responses

TDQS

C2.9/5.0
Behavior2/5

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

No annotations are provided, so the description carries full burden. It states 'check' which suggests a read-only operation but does not explicitly confirm non-destructiveness, or disclose any side effects or performance implications.

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?

A single, clear sentence that uses no unnecessary words. Information is front-loaded and easy to parse.

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

Completeness2/5

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

Given no output schema and no annotations, the description should provide more context about return values, error types, or behavior. It only says 'check errors' without explaining what the output looks like or how it behaves for different detail levels.

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?

Since schema coverage is 100%, the description adds no additional meaning beyond what is in the input schema. Baseline score of 3 is appropriate as the tool does not require extra parameter explanations.

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

Purpose4/5

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

The description clearly identifies the action ('check') and resource ('node and descendant errors') within TouchDesigner, distinguishing it from sibling tools like get_td_nodes or get_td_node_parameters which deal with node retrieval or parameters.

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

Usage Guidelines2/5

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

No guidance on when to use this tool versus alternatives like get_td_info or execute_python_script. The description does not mention required context (e.g., node must exist) or 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.

get_td_node_parametersB

Get node parameters with concise/detailed formatting (detailLevel+limit supported)

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum number of items to include in formatted output
nodePathYesNode path. e.g., "/project1/textTOP"
detailLevelNoResponse detail level for tool output (minimal, summary, or detailed)
responseFormatNoStructured output format for formatted responses

TDQS

B3.2/5.0
Behavior2/5

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

No annotations provided, so description must disclose behavioral traits. It only mentions formatting options, not whether the operation is read-only or has side effects. The read-only nature is implied but not explicit.

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

Conciseness4/5

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

The description is a single, efficient sentence with no wasted words. It is appropriately sized for a simple tool.

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?

With 4 parameters and no output schema, the description could be more complete. It mentions formatting but lacks explanation of what node parameters are or any prerequisites. Adequate but not fully complete.

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 coverage is 100%, so baseline is 3. The description adds minimal value by mentioning detailLevel and limit, but does not exceed what the schema already provides for other parameters like nodePath and responseFormat.

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 clearly states the tool retrieves node parameters with formatting options, using the verb 'Get' and specifying the resource 'node parameters'. It distinguishes from siblings like 'get_td_nodes' which likely list all nodes.

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

Usage Guidelines2/5

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

No guidance on when to use this tool versus alternatives like 'get_td_nodes' or 'update_td_node_parameters'. The description lacks context for selection.

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

get_td_nodesB

List nodes under a path with token-optimized output (detailLevel+limit supported)

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum number of items to include in formatted output
patternNoPattern to match against node names e.g., "null*"*
parentPathYesParent path e.g., "/project1"
detailLevelNoResponse detail level for tool output (minimal, summary, or detailed)
responseFormatNoStructured output format for formatted responses
includePropertiesNoWhether to include full node properties in the response (default false for better performance)

TDQS

B3.2/5.0
Behavior3/5

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

With no annotations, the description must disclose behavioral traits. 'List' implies a read operation, but it does not explicitly state read-only, performance implications, or potential side effects. The mention of detailLevel and limit provides some control but lacks completeness.

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?

Single sentence with clear action and key parameters. No wasted words; front-loaded with purpose and optimization hint. Conciseness is excellent.

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

Completeness2/5

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

Despite 6 parameters and no output schema, the description ignores pattern, includeProperties, and responseFormat. It highlights only detailLevel and limit, leaving agents unaware of other critical options. Lacks completeness for effective tool use.

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 coverage is 100%, so baseline is 3. The description adds 'token-optimized output' which gives context to detailLevel and limit parameters but does not cover other parameters like pattern or includeProperties. It provides marginal additional meaning.

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

Purpose4/5

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

The description clearly states the tool lists nodes under a path, which is a specific verb and resource. It distinguishes from sibling tools like get_td_node_errors or create_td_node by focusing on listing. The mention of 'token-optimized output' adds context but does not explicitly differentiate from all alternatives.

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

Usage Guidelines2/5

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

No guidance on when to use this tool versus alternatives like get_td_node_parameters or get_td_node_errors. The description hints at a use case (token optimization) but does not explicitly state when to choose this tool over others.

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

get_top_imageA

Capture the current output of a TOP node as an image so it can be viewed directly (maxSize optionally downscales the longer side)

ParametersJSON Schema
NameRequiredDescriptionDefault
maxSizeNoMaximum length of the image's longer side in pixels. The TOP is downscaled (aspect ratio preserved) only if it exceeds this value; omit to capture at native resolution.
nodePathYesPath to the TOP node to capture, e.g. '/project1/moviefilein1'

TDQS

A3.6/5.0
Behavior2/5

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

No annotations are provided, so the description must disclose behavior. It mentions 'current output' and 'viewed directly', but does not specify if the operation is destructive, what the output format is (e.g., base64, file path), or how errors are handled. This is insufficient for a tool with no annotation-supported safety profile.

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 sentence that front-loads the primary action and object, then adds a parenthetical for the optional parameter. It is efficient with no superfluous words.

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

Completeness2/5

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

The description omits the output format or how the image is returned (e.g., URL, binary data). With no output schema, this is a critical gap for an agent to handle the result. It also does not mention error conditions (e.g., invalid nodePath).

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%; both parameters have detailed descriptions (nodePath with example, maxSize with unit and behavior). The tool-level description adds only a summary of maxSize's optional downscaling, providing no new semantics beyond the schema.

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 states 'Capture the current output of a TOP node as an image so it can be viewed directly', using a specific verb and resource. It clearly differentiates from siblings like get_td_nodes (which list nodes) by specifying the action of capturing an image.

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 provides clear context: use when you want to view a TOP node's output as an image, with optional downscaling via maxSize. While it does not explicitly state when not to use this tool, the sibling set lacks an alternative for image capture, so the guidance is sufficient.

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

update_td_node_parametersB

Update parameters of a specific node in TouchDesigner

ParametersJSON Schema
NameRequiredDescriptionDefault
nodePathYesPath to the node (e.g., /project1/null1)
propertiesYes
detailLevelNoResponse detail level for tool output (minimal, summary, or detailed)
responseFormatNoStructured output format for formatted responses

TDQS

B3/5.0
Behavior2/5

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

With no annotations provided, the description carries full burden for behavioral disclosure. It only states 'update parameters' without mentioning permissions, side effects, reversibility, or error handling, leaving significant gaps.

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

Conciseness3/5

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

The single-sentence description is short but under-specified. It is not verbose, but the lack of detail makes it less helpful than it could be. It is concise in length but not in information density.

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

Completeness2/5

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

Given the tool has 4 parameters (2 required), a nested object, and no output schema, the description is far too minimal. It does not explain return values, error behavior, or how the properties parameter works, leaving the agent underinformed.

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 75% (3 of 4 parameters have descriptions). The tool description adds no additional meaning to the parameters; it relies entirely on the schema. This meets the baseline but offers no extra value.

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 clearly states the action (update) and resource (parameters of a specific node in TouchDesigner). It effectively distinguishes from sibling tools like get_td_node_parameters (retrieval) and create/delete tools.

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

Usage Guidelines2/5

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

The description provides no guidance on when to use this tool versus alternatives, nor any conditions or prerequisites for use. It simply states what it does without contextual advice.

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

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 1 tool updatev1.5.0
    • Addedget_top_image
  2. 13 tool updatesv1.4.11
    • First observedcreate_td_node
    • First observeddelete_td_node
    • First observeddescribe_td_tools
    • First observedexec_node_method
    • First observedexecute_python_script
    • First observedget_td_class_details
    • First observedget_td_classes
    • First observedget_td_info
    • First observedget_td_module_help
    • First observedget_td_node_errors
    • First observedget_td_node_parameters
    • First observedget_td_nodes
    • First observedupdate_td_node_parameters

TDQS

B3.2/5.0
Disambiguation5/5

Each tool targets a distinct aspect of TouchDesigner (node creation/deletion, parameter updates, script execution, error checking, etc.). Descriptions are clear and leave no ambiguity about which tool to use for a given task.

Naming Consistency4/5

Most tools follow a verb_td_noun pattern (e.g., create_td_node, get_td_info). There is a minor inconsistency with get_top_image (no 'td'), but overall naming is predictable and consistent in style.

Tool Count5/5

14 tools is a well-scoped set for a TouchDesigner interface, covering node lifecycle, execution, introspection, and image capture without being overwhelming or too sparse.

Completeness3/5

Core operations like node CRUD and scripting are covered, but important functionalities for a node-based environment—such as connecting/disconnecting nodes or managing network wiring—are missing, leaving notable gaps.

Maintenance

ActivityMaintained
ResponsivenessResponsive

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    A
    quality
    D
    maintenance
    MCP server for controlling TouchDesigner from AI coding agents like Claude Code and Codex CLI, enabling operator manipulation, parameter control, and screenshot capture.
    12
    MIT
  • A
    license
    B
    quality
    A
    maintenance
    An MCP server for TouchDesigner that lets AI agents inspect, build, wire, optimize, and stabilize live TD networks with 106 tools, plus a technique memory system for reusable patterns.
    100
    8
    MIT

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/8beeeaaat/touchdesigner-mcp'

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