import { Server } from '@modelcontextprotocol/sdk/server/index.js'; import { McpServerConfig } from './types.js'; import './api/index.js'; /** * MCP Server Factory * * Creates a configured MCP Server instance without connecting a transport. * This allows the server to be used with different transports (stdio, HTTP). */ declare function createMcpServer(config: McpServerConfig): Server; export { createMcpServer };