/** * MCP Server for RW-UC Framework * * Entry point for the Model Context Protocol server that exposes * RW-UC framework functionality to Claude Code and other MCP clients. */ import { Server } from '@modelcontextprotocol/sdk/server/index.js'; /** * MCP Server options */ export interface McpServerOptions { transport?: 'stdio' | 'sse'; port?: number; verbose?: boolean; } /** * Create and configure the MCP server */ export declare function createMcpServer(options?: McpServerOptions): Server; /** * Start the MCP server */ export declare function startMcpServer(options?: McpServerOptions): Promise; /** * Main entry point for MCP server */ export declare function main(args?: string[]): Promise; export { Server }; //# sourceMappingURL=server.d.ts.map