touchdesigner-mcp-server
Version:
MCP server for TouchDesigner
13 lines (12 loc) • 614 B
JavaScript
/**
* Transport layer module exports
*
* This module provides type-safe configuration and validation for MCP transports:
* - stdio: Standard input/output transport
* - streamable-http: HTTP-based transport with SSE streaming
*/
export { DEFAULT_HTTP_CONFIG, DEFAULT_SESSION_CONFIG, isStdioTransportConfig, isStreamableHttpTransportConfig, TransportConfigSchema, } from "./config.js";
export { ExpressHttpManager } from "./expressHttpManager.js";
export { TransportFactory } from "./factory.js";
export { SessionManager } from "./sessionManager.js";
export { TransportConfigValidator } from "./validator.js";