@mantisware/peepit-mcp
Version:
Give your AI agents super-vision: blazing-fast macOS screenshots, smart window targeting, and local or cloud AI image analysis—all via a friendly Node.js MCP server.
16 lines • 636 B
TypeScript
import { Logger } from "pino";
import { SwiftCliResponse } from "../types/index.js";
export declare function initializeSwiftCliPath(packageRootDir: string): void;
export declare function executeSwiftCli(args: string[], logger: Logger, options?: {
timeout?: number;
}): Promise<SwiftCliResponse>;
export declare function readImageAsBase64(imagePath: string): Promise<string>;
export declare function execPeepIt(args: string[], packageRootDir: string, options?: {
expectSuccess?: boolean;
timeout?: number;
}): Promise<{
success: boolean;
data?: string;
error?: string;
}>;
//# sourceMappingURL=peepit-cli.d.ts.map