UNPKG

@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.

26 lines 484 B
/** * Base transport interface for MCP communication */ export class BaseTransport { server; running = false; /** * Check if the transport is running */ isRunning() { return this.running; } /** * Set the MCP server instance */ setServer(server) { this.server = server; } /** * Set the running state */ setRunning(running) { this.running = running; } } //# sourceMappingURL=base.js.map