@todo-for-ai/mcp
Version:
Model Context Protocol server for Todo for AI task management system with Streamable HTTP transport. Provides AI assistants with access to task management, project information, and feedback submission capabilities through modern HTTP-based communication.
22 lines • 814 B
TypeScript
import { BaseTransport } from './base.js';
import { TodoConfig } from '../types.js';
/**
* Factory for creating transport instances based on configuration and environment
*/
export declare class TransportFactory {
/**
* Create a transport instance based on configuration and environment detection
*/
static create(config: TodoConfig): BaseTransport;
/**
* Detect the appropriate transport type based on environment and configuration
* Currently always returns 'stdio' - HTTP detection preserved for future use
*/
private static detectTransportType;
/**
* Analyze the current environment to determine the best transport
* Preserved for future HTTP transport re-enablement
*/
private static analyzeEnvironment;
}
//# sourceMappingURL=factory.d.ts.map