#!/usr/bin/env node
/**
 * @fileoverview DeepSource MCP Server entry point.
 *
 * This is the main entry point for the DeepSource MCP server when run
 * as a standalone application. It uses the modular MCP server implementation
 * for better separation of concerns.
 *
 * @packageDocumentation
 */
import { DeepSourceMCPServer } from './server/mcp-server.js';
export declare const mcpServer: {
    readonly current: DeepSourceMCPServer;
};
export declare function initializeServer(): Promise<void>;
export declare function getMcpServer(): import("@modelcontextprotocol/sdk/server/mcp.js").McpServer;
export declare function handleCliArgs(args: string[]): boolean;
export { validateEnvironment, createAndConfigureToolRegistry } from './compatibility.js';
