touchdesigner-mcp-server
Version:
MCP server for TouchDesigner
8 lines (7 loc) • 368 B
TypeScript
import type { ToolMetadata } from "../metadata/touchDesignerToolMetadata.js";
import { type FormatterOptions } from "./responseFormatter.js";
interface ToolMetadataFormatterOptions extends Partial<FormatterOptions> {
filter?: string;
}
export declare function formatToolMetadata(entries: ToolMetadata[], options?: ToolMetadataFormatterOptions): string;
export {};