touchdesigner-mcp-server
Version:
MCP server for TouchDesigner
17 lines (16 loc) • 543 B
TypeScript
/**
* Node Details Formatter
*
* Formats TouchDesigner node parameter details with token optimization.
* Used by GET_TD_NODE_PARAMETERS tool.
*/
import type { TdNode } from "../../../gen/endpoints/TouchDesignerAPI.js";
import type { FormatterOptions } from "./responseFormatter.js";
/**
* Node details data structure (matches API response)
*/
export type NodeDetailsData = TdNode;
/**
* Format node parameter details
*/
export declare function formatNodeDetails(data: NodeDetailsData | undefined, options?: FormatterOptions): string;