cntx-ui
Version:
Autonomous Repository Intelligence engine with web UI and MCP server. Unified semantic code understanding, local RAG, and agent working memory.
11 lines (10 loc) • 331 B
JavaScript
/**
* MCP Stdio Transport
* Handles the low-level communication for the Model Context Protocol
*/
import { MCPServer } from './mcp-server.js';
export function startMCPTransport(cntxServer) {
// The MCPServer constructor already sets up stdin listener
const mcpServer = new MCPServer(cntxServer);
return mcpServer;
}