UNPKG

@foundrole/ai-job-search-mcp

Version:

Run your job search from your AI assistant. Connect FoundRole to Claude, ChatGPT, Cursor, or any MCP client and search live jobs right away — no sign-up. Sign in once (your AI does it for you) to save and track applications on a Kanban board, set follow-u

26 lines 616 B
export interface ProxyConfig { debugMode: boolean; targetUrl: string; } export interface ClientInfo { name: string; version: string; [x: string]: unknown; } export interface VersionExtractionResult { source: "executable" | "plist" | "fallback"; error?: string; version?: string; } export interface ApplicationInfo { name: string; version: string; bundlePath?: string; executablePath?: string; } export interface PlistInfo { CFBundleShortVersionString?: string; CFBundleVersion?: string; CFBundleVersionString?: string; } //# sourceMappingURL=types.d.ts.map