UNPKG

@gork-labs/secondbrain-mcp

Version:

Second Brain MCP Server - Agent team orchestration with dynamic tool discovery

29 lines (28 loc) 655 B
/** * Version utilities for SecondBrain MCP Server * * Provides runtime access to package.json version information * * Created: 2025-07-25T20:37:52+02:00 * Author: Staff Software Engineer - Gorka */ /** * Get the version from package.json */ export declare function getVersion(): string; /** * Get the package name from package.json */ export declare function getPackageName(): string; /** * Get full package information */ export declare function getPackageInfo(): { name: string; version: string; description?: string; }; /** * Get a formatted version string for logging */ export declare function getVersionString(): string;