/** * Centralized version configuration for the SonarQube MCP Server */ /** * Server version - the version of the SonarQube MCP Server itself */ export declare const SERVER_VERSION = "1.7.0"; /** * MCP SDK version currently in use */ export declare const SDK_VERSION = "1.13.0"; /** * MCP protocol versions supported by the current SDK * Listed in order from newest to oldest */ export declare const SUPPORTED_PROTOCOL_VERSIONS: readonly ["2025-06-18", "2025-03-26", "2024-11-05", "2024-10-07"]; /** * Latest MCP protocol version */ export declare const LATEST_PROTOCOL_VERSION: "2025-06-18"; /** * Default negotiated protocol version (what most clients will use) */ export declare const DEFAULT_NEGOTIATED_PROTOCOL_VERSION = "2025-03-26"; /** * Version information object for logging and display */ export declare const VERSION_INFO: { readonly serverVersion: "1.7.0"; readonly sdkVersion: "1.13.0"; readonly supportedProtocolVersions: readonly ["2025-06-18", "2025-03-26", "2024-11-05", "2024-10-07"]; readonly latestProtocolVersion: "2025-06-18"; readonly defaultNegotiatedProtocolVersion: "2025-03-26"; };