/** * MCP Server Factory * Creates and configures MCP server instances with shared logic for resources, tools, and prompts */ import { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js'; import type { BuildOutput, ResponseSchemaMap } from '../build/types.js'; import type { ServerOptions } from './types.js'; /** * Create and configure the MCP server */ export declare function createServer(endpoints: BuildOutput, responseSchemas: ResponseSchemaMap, options: ServerOptions): McpServer; //# sourceMappingURL=factory.d.ts.map