bottlenecks-mcp-server
Version:
Model Context Protocol server for Bottlenecks database - enables AI agents like Claude to interact with bottleneck data
16 lines • 633 B
TypeScript
export declare const PACKAGE_NAME: string;
export declare const PACKAGE_VERSION: string;
export interface UpdateCheckResult {
current: string;
latest: string | null;
updateAvailable: boolean;
checkFailed: boolean;
}
/**
* Compare against the latest version published to npm. Never throws —
* a network failure (offline, registry down, corporate proxy) just reports
* checkFailed: true so callers can silently skip the notice rather than
* breaking server startup or a tool call over a version check.
*/
export declare function checkForUpdate(): Promise<UpdateCheckResult>;
//# sourceMappingURL=version.d.ts.map