UNPKG

@foundrole/ai-job-search-mcp

Version:

Easy-to-use MCP proxy server that connects AI assistants like Claude to job search services. Simply run with npx for instant job search capabilities in your AI conversations.

13 lines 385 B
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