UNPKG

@tgomareli/macos-tools-mcp

Version:

MCP server for advanced macOS system monitoring and file search capabilities

9 lines 818 B
import { SearchResult } from "../tools/types.js"; export declare function searchWithSpotlight(query: string, path?: string, fileTypes?: string[]): Promise<SearchResult[]>; export declare function searchFileContent(pattern: string, path: string, fileTypes?: string[], isRegex?: boolean): Promise<SearchResult[]>; export declare function getFileTags(filePath: string): Promise<string[]>; export declare function setFileTags(filePath: string, tags: string[]): Promise<void>; export declare function searchByTags(tags: string[], path?: string): Promise<SearchResult[]>; export declare function fuzzyMatch(query: string, text: string): number; export declare function searchFilenames(query: string, path: string, fileTypes?: string[], maxResults?: number): Promise<SearchResult[]>; //# sourceMappingURL=file-search.d.ts.map