touchdesigner-mcp-server
Version:
MCP server for TouchDesigner
22 lines (21 loc) • 716 B
TypeScript
/**
* Current MCP server version
*/
export declare const getMcpServerVersion: () => string;
export declare const MCP_SERVER_VERSION: string;
/**
* Minimum compatible TouchDesigner API Server version required by the MCP server
*
* Loaded from package.json's mcpCompatibility.minApiVersion field.
* Falls back to the current package version if undefined.
*
* API Server must be at or above this version.
* - MAJOR mismatch: Error
* - MINOR/PATCH differences: Warning or allow
*
* Update when:
* - Introducing breaking API changes
* - Making incompatible changes to OpenAPI schema
*/
export declare const getMinCompatibleApiVersion: () => string;
export declare const MIN_COMPATIBLE_API_VERSION: string;