/** * GitMem MCP Server * * Registers all tools and handles MCP protocol communication. * Tool definitions are in ./tools/definitions.ts */ import { Server } from "@modelcontextprotocol/sdk/server/index.js"; /** * Create and configure the MCP server */ export declare function createServer(): Server; /** * Run the server with stdio transport * * Initializes local vector search in background for fast startup. * Uses direct Supabase queries to get embeddings for local cache. * * Server starts immediately; cache loads in background. * First few queries may use Supabase fallback until cache is ready. */ export declare function runServer(): Promise; //# sourceMappingURL=server.d.ts.map