@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
13 lines • 385 B
JavaScript
export function getProxyConfig() {
const envTargetUrl = process.env.MCP_TARGET_URL;
const hasCustomUrl = !!(envTargetUrl && envTargetUrl.trim());
const targetUrl = hasCustomUrl
? envTargetUrl
: "https://www.foundrole.com/mcp";
const debugMode = hasCustomUrl;
return {
debugMode,
targetUrl,
};
}
//# sourceMappingURL=config.js.map