#!/usr/bin/env node /** * Search MCP - Entry Point * * A local-first Model Context Protocol (MCP) server that provides * semantic search capabilities for codebases. * * This is the main entry point that either: * - Starts the MCP server (default, for use by AI assistants) * - Runs CLI commands (index, search, status, reindex) * - Runs setup wizard (setup) * - Shows help/version (--help, --version) * * Usage: * npx @liraz-sbz/search-mcp # Start MCP server * npx @liraz-sbz/search-mcp index # Create search index * npx @liraz-sbz/search-mcp search "query" # Search code * npx @liraz-sbz/search-mcp status # Show index status * npx @liraz-sbz/search-mcp reindex # Rebuild index * npx @liraz-sbz/search-mcp setup # Configure MCP clients * npx @liraz-sbz/search-mcp --help # Show help * npx @liraz-sbz/search-mcp --version # Show version */ export {}; //# sourceMappingURL=index.d.ts.map