TouchDesigner MCP
This server enables AI agents to interact with and control TouchDesigner projects through MCP tools. It supports:
Node management: Create, delete, update parameters, and call methods on nodes.
Querying: List nodes, get node parameters, check for errors, and retrieve server info.
Python scripting: Execute arbitrary Python scripts and call TouchDesigner node methods.
Introspection: List available Python classes/modules, get class details, and fetch
help()documentation.Inter-node operations: Connect nodes using pre-built prompts.
Visual capture: Grab images from TOP nodes.
Tool discovery: Generate a manifest of all available tools.
Required for code generation during development, used to generate API client/server schemas for the TouchDesigner integration.
Required runtime environment for the TouchDesigner MCP server, enabling the bridge between AI models and TouchDesigner.
Used within TouchDesigner for scripting and controlling nodes, allowing AI agents to execute Python code to manipulate TouchDesigner projects.
Used to develop the MCP server code with type safety, providing a robust interface between AI agents and TouchDesigner.
Used for schema validation in the TypeScript implementation, ensuring proper data validation for tool inputs.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@TouchDesigner MCPcreate a noise TOP and connect it to a movie out"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
TouchDesigner MCP
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.
Overview

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 |
| Creates a new node. |
| Deletes an existing node. |
| Generates a manifest of the available TouchDesigner tools. |
| Calls a Python method on a node. |
| Executes an arbitrary Python script in TouchDesigner. |
| Gets details of a TouchDesigner Python class or module. |
| Gets a list of TouchDesigner Python classes. |
| Gets information about the TouchDesigner server environment. |
| Gets Python help() documentation for TouchDesigner modules/classes. |
| Checks for errors on a specified node and its children. |
| Gets the parameters of a specific node. |
| Gets nodes under a parent path, with optional filtering. |
| Captures the current output of a TOP node as an image. |
| Updates the parameters of a specific node. |
Prompts
Prompts provide instructions for AI agents to perform specific actions in TouchDesigner.
Prompt Name | Description |
| Fuzzy searches for nodes and retrieves information based on name, family, or type. |
| Provides instructions to connect nodes within TouchDesigner. |
| 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 | ✅ 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:
Download the latest touchdesigner-mcp-td.zip from the releases page.
Delete the existing
touchdesigner-mcp-tdfolder and replace it with the newly extracted contents.Remove the old
mcp_webserver_basecomponent from your TouchDesigner project and import the.toxfrom the new folder.Restart TouchDesigner and the AI agent running the MCP server (e.g., Claude Desktop).
For developers: When developing locally, run
npm run versionafter editingpackage.json(or simply usenpm 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
TouchDesignerClientcaches 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 frommcp_webserver_base.toxis running, and confirm the configured port (default9981).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. Use127.0.0.1unless 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!
Fork the repository.
Create a feature branch (
git checkout -b feature/amazing-feature).Make your changes.
Add tests and ensure everything works (
npm test).Commit your changes (
git commit -m 'Add some amazing feature').Push to your branch (
git push origin feature/amazing-feature).Open a pull request.
Please always include appropriate tests when making implementation changes.
License
MIT
Available Tools
14 toolscreate_td_nodeC
Create a new node in TouchDesigner
| Name | Required | Description | Default |
|---|---|---|---|
| nodeName | No | Name of the new node (optional) | |
| nodeType | Yes | Type of the node to create (e.g., textTop) | |
| parentPath | Yes | Path to the parent node (e.g., /project1) | |
| detailLevel | No | Response detail level for tool output (minimal, summary, or detailed) | |
| responseFormat | No | Structured output format for formatted responses |
TDQS
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.
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.
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.
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.
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.
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
| Name | Required | Description | Default |
|---|---|---|---|
| nodePath | Yes | Path to the node to delete. e.g., "/project1/geo1" | |
| detailLevel | No | Response detail level for tool output (minimal, summary, or detailed) | |
| responseFormat | No | Structured output format for formatted responses |
TDQS
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.
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.
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.
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.
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.
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
| Name | Required | Description | Default |
|---|---|---|---|
| filter | No | Optional keyword to filter by tool name, module path, or parameter description | |
| detailLevel | No | Response detail level for tool output (minimal, summary, or detailed) | |
| responseFormat | No | Structured output format for formatted responses |
TDQS
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.
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.
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.
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.
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.
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
| Name | Required | Description | Default |
|---|---|---|---|
| args | No | List of arguments for the method call | |
| kwargs | No | Keyword arguments for the method call | |
| method | Yes | Name of the method to call | |
| nodePath | Yes | Path to the node (e.g., /project1/null1) | |
| detailLevel | No | Response detail level for tool output (minimal, summary, or detailed) | |
| responseFormat | No | Structured output format for formatted responses |
TDQS
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.
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.
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.
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.
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.
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)
| Name | Required | Description | Default |
|---|---|---|---|
| script | Yes | e.g., "op('/project1/text_over_image').outputConnectors[0].connect(op('/project1/out1'))" | |
| detailLevel | No | Response detail level for tool output (minimal, summary, or detailed) | |
| responseFormat | No | Structured output format for formatted responses |
TDQS
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.
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.
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.
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.
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.
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)
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of items to include in formatted output | |
| className | Yes | Name of the class or module. e.g., "textTOP" | |
| detailLevel | No | Response detail level for tool output (minimal, summary, or detailed) | |
| responseFormat | No | Structured output format for formatted responses |
TDQS
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.
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.
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.
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.
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.
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)
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of items to include in formatted output | |
| detailLevel | No | Response detail level for tool output (minimal, summary, or detailed) | |
| responseFormat | No | Structured output format for formatted responses |
TDQS
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.
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.
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.
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.
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.
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
| Name | Required | Description | Default |
|---|---|---|---|
| detailLevel | No | Response detail level for tool output (minimal, summary, or detailed) | |
| responseFormat | No | Structured output format for formatted responses |
TDQS
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.
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.
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.
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.
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.
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
| Name | Required | Description | Default |
|---|---|---|---|
| moduleName | Yes | Module or class name (e.g., "noiseCHOP", "td.noiseCHOP", "tdu"). | |
| detailLevel | No | Response detail level for tool output (minimal, summary, or detailed) | |
| responseFormat | No | Structured output format for formatted responses |
TDQS
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.
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.
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.
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.
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.
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
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of items to include in formatted output | |
| nodePath | Yes | Absolute path to the node to inspect. e.g., "/project1/text1" | |
| detailLevel | No | Response detail level for tool output (minimal, summary, or detailed) | |
| responseFormat | No | Structured output format for formatted responses |
TDQS
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.
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.
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.
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.
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.
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)
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of items to include in formatted output | |
| nodePath | Yes | Node path. e.g., "/project1/textTOP" | |
| detailLevel | No | Response detail level for tool output (minimal, summary, or detailed) | |
| responseFormat | No | Structured output format for formatted responses |
TDQS
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.
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.
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.
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.
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.
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)
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of items to include in formatted output | |
| pattern | No | Pattern to match against node names e.g., "null*" | * |
| parentPath | Yes | Parent path e.g., "/project1" | |
| detailLevel | No | Response detail level for tool output (minimal, summary, or detailed) | |
| responseFormat | No | Structured output format for formatted responses | |
| includeProperties | No | Whether to include full node properties in the response (default false for better performance) |
TDQS
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.
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.
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.
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.
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.
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)
| Name | Required | Description | Default |
|---|---|---|---|
| maxSize | No | Maximum 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. | |
| nodePath | Yes | Path to the TOP node to capture, e.g. '/project1/moviefilein1' |
TDQS
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.
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.
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.
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.
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.
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
| Name | Required | Description | Default |
|---|---|---|---|
| nodePath | Yes | Path to the node (e.g., /project1/null1) | |
| properties | Yes | ||
| detailLevel | No | Response detail level for tool output (minimal, summary, or detailed) | |
| responseFormat | No | Structured output format for formatted responses |
TDQS
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.
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.
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.
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.
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.
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 tool update
v1.5.0- Added
get_top_image
13 tool updates
v1.4.11- First observed
create_td_node - First observed
delete_td_node - First observed
describe_td_tools - First observed
exec_node_method - First observed
execute_python_script - First observed
get_td_class_details - First observed
get_td_classes - First observed
get_td_info - First observed
get_td_module_help - First observed
get_td_node_errors - First observed
get_td_node_parameters - First observed
get_td_nodes - First observed
update_td_node_parameters
TDQS
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.
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.
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.
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
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
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
A Model Context Protocol server for Wix AI tools
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to control Unreal E…
Real-time planetary signal engine and Model Context Protocol (MCP) server for autonomous AI agents.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceHigh-performance MCP server that enables AI assistants to control TouchDesigner live via WebSocket, providing 37 tools for nodes, parameters, scripting, and more.5MIT
- AlicenseAqualityDmaintenanceMCP server for controlling TouchDesigner from AI coding agents like Claude Code and Codex CLI, enabling operator manipulation, parameter control, and screenshot capture.12MIT
- AlicenseBqualityAmaintenanceAn 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.1008MIT
- AlicenseAqualityBmaintenanceEnables LLMs to directly control, introspect, and build TouchDesigner networks in real-time through a Model Context Protocol server.25MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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