{"id":645,"date":"2026-03-03T08:52:56","date_gmt":"2026-03-03T08:52:56","guid":{"rendered":"https:\/\/6figr.com\/blog\/?p=645"},"modified":"2026-03-10T16:26:18","modified_gmt":"2026-03-10T16:26:18","slug":"jobgpt-mcp-claude-desktop","status":"publish","type":"post","link":"https:\/\/6figr.com\/blog\/jobgpt-mcp-claude-desktop-645","title":{"rendered":"How to Automate Your Job Search in Claude Desktop with JobGPT MCP"},"content":{"rendered":"\n<p><em>Last updated: March 2026<\/em><\/p>\n\n\n\n<p>What if you could tell Claude <strong>&#8220;find me remote senior React jobs paying over $150k&#8221;<\/strong>, and it actually searched real job boards, saved the matches, and auto-applied for you?<\/p>\n\n\n\n<p>That&#8217;s exactly what the <strong>JobGPT MCP server<\/strong> does. It connects Claude Desktop to the full JobGPT platform: 34 tools covering job search, applications, resumes, recruiter outreach, and more. No browser tabs. No copy-pasting. Just ask.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What is MCP?<\/h2>\n\n\n\n<p><strong>MCP (Model Context Protocol)<\/strong> is an open standard that lets AI assistants like Claude connect to external tools and services. Think of it as giving Claude hands. It can now reach out, search for jobs, submit applications, and pull back results, all within your conversation.<\/p>\n\n\n\n<p>The JobGPT MCP server is one of these tools. Once connected, Claude gains access to the entire JobGPT job search engine and automation platform.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What You Can Do<\/h2>\n\n\n\n<p>Once set up, just chat naturally with Claude. Here are some things you can ask:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>&#8220;Search for remote Python developer jobs paying over $150k&#8221;<\/strong><\/li>\n<li><strong>&#8220;Create a job hunt for Senior Engineer roles in San Francisco&#8221;<\/strong><\/li>\n<li><strong>&#8220;Show me my application stats for the last 7 days&#8221;<\/strong><\/li>\n<li><strong>&#8220;Generate a tailored resume for this Google application&#8221;<\/strong><\/li>\n<li><strong>&#8220;Find recruiters for this job and draft an outreach email&#8221;<\/strong><\/li>\n<li><strong>&#8220;Auto-apply to the top 5 matches from my job hunt&#8221;<\/strong><\/li>\n<\/ul>\n\n\n\n<p>Claude handles the back-and-forth with JobGPT automatically. You just describe what you want in plain English.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Setup: Step by Step<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">Step 1: Get Your API Key<\/h3>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Go to <a href=\"https:\/\/6figr.com\/account\">6figr.com\/account<\/a><\/li>\n<li>Scroll to <strong>MCP Integrations<\/strong><\/li>\n<li>Click <strong>Generate API Key<\/strong><\/li>\n<li>Copy the key (it starts with <code>mcp_<\/code>)<\/li>\n<\/ol>\n\n\n\n<p>You&#8217;ll need a JobGPT account. If you don&#8217;t have one, <a href=\"http:\/\/6figr.com\/jobgpt-ai?utm_source=blog\">sign up here<\/a>. You get 5 free auto-apply credits to start.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 2: Find Your Config File<\/h3>\n\n\n\n<p>Claude Desktop stores its MCP configuration in a JSON file:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>macOS:<\/strong> <code>~\/Library\/Application Support\/Claude\/claude_desktop_config.json<\/code><\/li>\n<li><strong>Windows:<\/strong> <code>%APPDATA%Claudeclaude_desktop_config.json<\/code><\/li>\n<\/ul>\n\n\n\n<p>If the file doesn&#8217;t exist yet, create it.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 3: Add the JobGPT MCP Server<\/h3>\n\n\n\n<p>Open the config file and paste the following. Replace <code>your-api-key-here<\/code> with the key you copied in Step 1:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>{\n  \"mcpServers\": {\n    \"jobgpt\": {\n      \"command\": \"npx\",\n      \"args\": [\n        \"-y\",\n        \"mcp-remote\",\n        \"https:\/\/mcp.6figr.com\/mcp\",\n        \"--header\",\n        \"Authorization:${AUTH_HEADER}\"\n      ],\n      \"env\": {\n        \"AUTH_HEADER\": \"Bearer your-api-key-here\"\n      }\n    }\n  }\n}<\/code><\/pre>\n\n\n\n<p>This uses <code>mcp-remote<\/code> to connect Claude Desktop to the hosted JobGPT server. It requires <strong>Node.js 18+<\/strong> installed on your machine. You can download it from <a href=\"https:\/\/nodejs.org\">nodejs.org<\/a>.<\/p>\n\n\n\n<p>If you already have other MCP servers configured, just add the <code>\"jobgpt\"<\/code> block inside the existing <code>\"mcpServers\"<\/code> object.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 4: Restart Claude Desktop<\/h3>\n\n\n\n<p>Close and reopen Claude Desktop. You should see the JobGPT tools available in your tool list. That&#8217;s it. You&#8217;re ready to go.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Alternative: Run the Server Locally<\/h3>\n\n\n\n<p>If you prefer to run the JobGPT MCP server directly on your machine instead of connecting to the remote server:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>{\n  \"mcpServers\": {\n    \"jobgpt\": {\n      \"command\": \"npx\",\n      \"args\": [\"-y\", \"jobgpt-mcp-server\"],\n      \"env\": {\n        \"JOBGPT_API_KEY\": \"your-api-key-here\",\n        \"JOBGPT_API_URL\": \"https:\/\/6figr.com\"\n      }\n    }\n  }\n}<\/code><\/pre>\n\n\n\n<p>This also requires Node.js 18+ installed on your machine.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">All 34 Tools at Your Fingertips<\/h2>\n\n\n\n<p>The JobGPT MCP server gives Claude access to <strong>34 tools<\/strong> across six categories:<\/p>\n\n\n\n<figure class=\"wp-block-table is-style-stripes\"><table class=\"has-background has-fixed-layout\" style=\"background-color:#fefefe\"><thead><tr><th><strong>Category<\/strong><\/th><th><strong>What You Can Do<\/strong><\/th><\/tr><\/thead><tbody><tr><td>Job Search<\/td><td>Search with filters, get job matches, view job details<\/td><\/tr><tr><td>Profile &amp; Salary<\/td><td>View\/update profile, manage compensation, check credits<\/td><\/tr><tr><td>Job Hunts<\/td><td>Create and manage saved searches with auto-apply<\/td><\/tr><tr><td>Applications<\/td><td>Track applications, view stats, auto-apply, import jobs by URL<\/td><\/tr><tr><td>Resume<\/td><td>Upload, generate tailored resumes, calculate match scores<\/td><\/tr><tr><td>Outreach<\/td><td>Find recruiters\/referrers, send personalized outreach emails<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Example Workflow<\/h2>\n\n\n\n<p>Here&#8217;s what a typical job search session looks like with Claude + JobGPT:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>You:<\/strong> &#8220;Create a job hunt for Senior Frontend Engineer roles in NYC, remote OK, $160k+ minimum&#8221;<\/li>\n<li><strong>Claude:<\/strong> Creates the job hunt with your filters and returns the details<\/li>\n<li><strong>You:<\/strong> &#8220;Find matching jobs&#8221;<\/li>\n<li><strong>Claude:<\/strong> Returns fresh job matches you haven&#8217;t seen before<\/li>\n<li><strong>You:<\/strong> &#8220;Add the Stripe and Airbnb jobs to my applications and auto-apply&#8221;<\/li>\n<li><strong>Claude:<\/strong> Saves them, triggers auto-apply, confirms submission<\/li>\n<li><strong>You:<\/strong> &#8220;Generate a tailored resume for the Stripe application&#8221;<\/li>\n<li><strong>Claude:<\/strong> Creates an AI-optimized resume highlighting relevant skills<\/li>\n<li><strong>You:<\/strong> &#8220;Find recruiters at Stripe and draft an outreach email&#8221;<\/li>\n<li><strong>Claude:<\/strong> Finds contacts and drafts a personalized message<\/li>\n<\/ol>\n\n\n\n<p>All of this happens in a single conversation. No tab switching. No manual data entry.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" \/>\n\n\n\n<div class=\"wp-block-columns alignwide has-background is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex\" style=\"background:linear-gradient(135deg,rgb(254,205,165) 0%,rgb(205,38,83) 0%,rgb(86,16,34) 100%)\">\n\n<div class=\"wp-block-column is-vertically-aligned-top is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:66.67%\">\n<style>.wp-block-kadence-advancedheading.kt-adv-headingmcp-claude-cta1, .wp-block-kadence-advancedheading.kt-adv-headingmcp-claude-cta1[data-kb-block=\"kb-adv-headingmcp-claude-cta1\"]{text-align:left;font-style:normal;color:#ffffff;}.wp-block-kadence-advancedheading.kt-adv-headingmcp-claude-cta1 mark.kt-highlight, .wp-block-kadence-advancedheading.kt-adv-headingmcp-claude-cta1[data-kb-block=\"kb-adv-headingmcp-claude-cta1\"] mark.kt-highlight{font-style:normal;color:#f76a0c;-webkit-box-decoration-break:clone;box-decoration-break:clone;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;}.wp-block-kadence-advancedheading.kt-adv-headingmcp-claude-cta1 img.kb-inline-image, .wp-block-kadence-advancedheading.kt-adv-headingmcp-claude-cta1[data-kb-block=\"kb-adv-headingmcp-claude-cta1\"] img.kb-inline-image{width:150px;vertical-align:baseline;}<\/style>\n<h4 class=\"kt-adv-heading-mcp-claude-cta1 wp-block-kadence-advancedheading\">Ready to supercharge your job search?<\/h4>\n\n\n<p class=\"has-text-color\" style=\"color:#ffffff\">Get your API key and start searching for jobs from Claude Desktop in under 2 minutes.<\/p>\n\n<\/div>\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33.33%\">\n<style>.wp-block-kadence-advancedbtn.kb-btnsmcp-claude-btn1{gap:var(--global-kb-gap-xs, 0.5rem );justify-content:center;align-items:center;}.kt-btnsmcp-claude-btn1 .kt-button{font-weight:normal;font-style:normal;}.kt-btnsmcp-claude-btn1 .kt-btn-wrap-0{margin-right:5px;}.wp-block-kadence-advancedbtn.kt-btnsmcp-claude-btn1 .kt-btn-wrap-0 .kt-button{color:#555555;border-color:#555555;}.wp-block-kadence-advancedbtn.kt-btnsmcp-claude-btn1 .kt-btn-wrap-0 .kt-button:hover, .wp-block-kadence-advancedbtn.kt-btnsmcp-claude-btn1 .kt-btn-wrap-0 .kt-button:focus{color:#ffffff;border-color:#444444;}.wp-block-kadence-advancedbtn.kt-btnsmcp-claude-btn1 .kt-btn-wrap-0 .kt-button::before{display:none;}.wp-block-kadence-advancedbtn.kt-btnsmcp-claude-btn1 .kt-btn-wrap-0 .kt-button:hover, .wp-block-kadence-advancedbtn.kt-btnsmcp-claude-btn1 .kt-btn-wrap-0 .kt-button:focus{background:#444444;}<\/style>\n<div class=\"wp-block-kadence-advancedbtn kb-buttons-wrap kb-btns-mcp-claude-btn1\">\n<style>ul.menu .wp-block-kadence-advancedbtn .kb-btnmcp-claude-sbtn1.kb-button{width:initial;}.wp-block-kadence-advancedbtn .kb-btnmcp-claude-sbtn1.kb-button{color:#000000;background:#fafafa;border-top-left-radius:149px;border-top-right-radius:149px;border-bottom-right-radius:149px;border-bottom-left-radius:149px;box-shadow:1px 1px 2px 0px rgba(0, 0, 0, 0.2);}<\/style><a class=\"kb-button kt-button button kb-btnmcp-claude-sbtn1 kt-btn-size-large kt-btn-width-type-auto kb-btn-global-fill  kt-btn-has-text-true kt-btn-has-svg-false  wp-block-kadence-singlebtn\" href=\"http:\/\/6figr.com\/jobgpt-ai?utm_source=blog\" target=\"_blank\" rel=\"noreferrer noopener\"><span class=\"kt-btn-inner-text\">Try JobGPT Free u2192<\/span><\/a>\n<\/div>\n\n<\/div>\n\n<\/div>\n\n\n\n<h2 class=\"wp-block-heading\">Troubleshooting<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">Tools not showing up in Claude?<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Make sure you restarted Claude Desktop after editing the config<\/li>\n<li>Verify your config JSON is valid (no trailing commas, correct brackets)<\/li>\n<li>Make sure Node.js 18+ is installed: run <code>node --version<\/code> in your terminal to check<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">&#8220;API Error (401)&#8221; when using tools?<\/h3>\n\n\n\n<p>Your API key is invalid or expired. Generate a new one at <a href=\"https:\/\/6figr.com\/account\">6figr.com\/account<\/a>.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">&#8220;Out of credits&#8221; message?<\/h3>\n\n\n\n<p>Operations like auto-apply and resume generation consume credits. You can <a href=\"https:\/\/6figr.com\/jobgpt?addCreditsPopup=true\">purchase more credits here<\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">FAQ<\/h2>\n\n\n\n<h4 class=\"wp-block-heading\">Is the JobGPT MCP server free?<\/h4>\n\n\n\n<p>The MCP server itself is free and open source. You get <strong>5 free auto-apply credits<\/strong> when you sign up for JobGPT. After that, credits start at $34.99\/month.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Does it work outside the US?<\/h4>\n\n\n\n<p>Yes. JobGPT supports <strong>US, Canada, UK + 150+ countries<\/strong>. The job search covers global listings.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Do I need to install anything?<\/h4>\n\n\n\n<p>You need <strong>Node.js 18+<\/strong> installed on your machine. The setup uses <code>npx<\/code> to automatically download and run the required packages \u2014 no manual installation of the MCP server itself is needed. Just paste the config and go.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Can I use this alongside other MCP servers?<\/h4>\n\n\n\n<p>Absolutely. Just add the JobGPT config alongside your other servers in the same config file. They all work independently.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" \/>\n\n\n\n<div class=\"wp-block-columns alignwide has-background is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex\" style=\"background:linear-gradient(135deg,rgb(254,205,165) 0%,rgb(205,38,83) 0%,rgb(86,16,34) 100%)\">\n\n<div class=\"wp-block-column is-vertically-aligned-top is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:66.67%\">\n<style>.wp-block-kadence-advancedheading.kt-adv-headingmcp-claude-cta2, .wp-block-kadence-advancedheading.kt-adv-headingmcp-claude-cta2[data-kb-block=\"kb-adv-headingmcp-claude-cta2\"]{text-align:left;font-style:normal;color:#ffffff;}.wp-block-kadence-advancedheading.kt-adv-headingmcp-claude-cta2 mark.kt-highlight, .wp-block-kadence-advancedheading.kt-adv-headingmcp-claude-cta2[data-kb-block=\"kb-adv-headingmcp-claude-cta2\"] mark.kt-highlight{font-style:normal;color:#f76a0c;-webkit-box-decoration-break:clone;box-decoration-break:clone;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;}.wp-block-kadence-advancedheading.kt-adv-headingmcp-claude-cta2 img.kb-inline-image, .wp-block-kadence-advancedheading.kt-adv-headingmcp-claude-cta2[data-kb-block=\"kb-adv-headingmcp-claude-cta2\"] img.kb-inline-image{width:150px;vertical-align:baseline;}<\/style>\n<h4 class=\"kt-adv-heading-mcp-claude-cta2 wp-block-kadence-advancedheading\">Stop manually applying to jobs.<\/h4>\n\n\n<p class=\"has-text-color\" style=\"color:#ffffff\">Let Claude + JobGPT handle the grunt work while you focus on interview prep.<\/p>\n\n<\/div>\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33.33%\">\n<style>.wp-block-kadence-advancedbtn.kb-btnsmcp-claude-btn2{gap:var(--global-kb-gap-xs, 0.5rem );justify-content:center;align-items:center;}.kt-btnsmcp-claude-btn2 .kt-button{font-weight:normal;font-style:normal;}.kt-btnsmcp-claude-btn2 .kt-btn-wrap-0{margin-right:5px;}.wp-block-kadence-advancedbtn.kt-btnsmcp-claude-btn2 .kt-btn-wrap-0 .kt-button{color:#555555;border-color:#555555;}.wp-block-kadence-advancedbtn.kt-btnsmcp-claude-btn2 .kt-btn-wrap-0 .kt-button:hover, .wp-block-kadence-advancedbtn.kt-btnsmcp-claude-btn2 .kt-btn-wrap-0 .kt-button:focus{color:#ffffff;border-color:#444444;}.wp-block-kadence-advancedbtn.kt-btnsmcp-claude-btn2 .kt-btn-wrap-0 .kt-button::before{display:none;}.wp-block-kadence-advancedbtn.kt-btnsmcp-claude-btn2 .kt-btn-wrap-0 .kt-button:hover, .wp-block-kadence-advancedbtn.kt-btnsmcp-claude-btn2 .kt-btn-wrap-0 .kt-button:focus{background:#444444;}<\/style>\n<div class=\"wp-block-kadence-advancedbtn kb-buttons-wrap kb-btns-mcp-claude-btn2\">\n<style>ul.menu .wp-block-kadence-advancedbtn .kb-btnmcp-claude-sbtn2.kb-button{width:initial;}.wp-block-kadence-advancedbtn .kb-btnmcp-claude-sbtn2.kb-button{color:#000000;background:#fafafa;border-top-left-radius:149px;border-top-right-radius:149px;border-bottom-right-radius:149px;border-bottom-left-radius:149px;box-shadow:1px 1px 2px 0px rgba(0, 0, 0, 0.2);}<\/style><a class=\"kb-button kt-button button kb-btnmcp-claude-sbtn2 kt-btn-size-large kt-btn-width-type-auto kb-btn-global-fill  kt-btn-has-text-true kt-btn-has-svg-false  wp-block-kadence-singlebtn\" href=\"http:\/\/6figr.com\/jobgpt-ai?utm_source=blog\" target=\"_blank\" rel=\"noreferrer noopener\"><span class=\"kt-btn-inner-text\">Get Started Free u2192<\/span><\/a>\n<\/div>\n\n<\/div>\n\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Set up the JobGPT MCP server in Claude Desktop to search for jobs, auto-apply, generate tailored resumes, and track applications, all from a single chat window.<\/p>\n","protected":false},"author":5,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-645","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Automate Your Job Search in Claude Desktop with JobGPT MCP - 6figr.com Blog<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/6figr.com\/blog\/jobgpt-mcp-claude-desktop-645\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Automate Your Job Search in Claude Desktop with JobGPT MCP - 6figr.com Blog\" \/>\n<meta property=\"og:description\" content=\"Set up the JobGPT MCP server in Claude Desktop to search for jobs, auto-apply, generate tailored resumes, and track applications, all from a single chat window.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/6figr.com\/blog\/jobgpt-mcp-claude-desktop-645\" \/>\n<meta property=\"og:site_name\" content=\"6figr.com Blog\" \/>\n<meta property=\"article:published_time\" content=\"2026-03-03T08:52:56+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-03-10T16:26:18+00:00\" \/>\n<meta name=\"author\" content=\"Shanaya\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Shanaya\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/6figr.com\/blog\/jobgpt-mcp-claude-desktop-645#article\",\"isPartOf\":{\"@id\":\"https:\/\/6figr.com\/blog\/jobgpt-mcp-claude-desktop-645\"},\"author\":{\"name\":\"Shanaya\",\"@id\":\"https:\/\/6figr.com\/blog\/#\/schema\/person\/731d432c21c5b7fe6599b6e0056d3ea6\"},\"headline\":\"How to Automate Your Job Search in Claude Desktop with JobGPT MCP\",\"datePublished\":\"2026-03-03T08:52:56+00:00\",\"dateModified\":\"2026-03-10T16:26:18+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/6figr.com\/blog\/jobgpt-mcp-claude-desktop-645\"},\"wordCount\":885,\"commentCount\":0,\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/6figr.com\/blog\/jobgpt-mcp-claude-desktop-645#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/6figr.com\/blog\/jobgpt-mcp-claude-desktop-645\",\"url\":\"https:\/\/6figr.com\/blog\/jobgpt-mcp-claude-desktop-645\",\"name\":\"How to Automate Your Job Search in Claude Desktop with JobGPT MCP - 6figr.com Blog\",\"isPartOf\":{\"@id\":\"https:\/\/6figr.com\/blog\/#website\"},\"datePublished\":\"2026-03-03T08:52:56+00:00\",\"dateModified\":\"2026-03-10T16:26:18+00:00\",\"author\":{\"@id\":\"https:\/\/6figr.com\/blog\/#\/schema\/person\/731d432c21c5b7fe6599b6e0056d3ea6\"},\"breadcrumb\":{\"@id\":\"https:\/\/6figr.com\/blog\/jobgpt-mcp-claude-desktop-645#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/6figr.com\/blog\/jobgpt-mcp-claude-desktop-645\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/6figr.com\/blog\/jobgpt-mcp-claude-desktop-645#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/6figr.com\/blog\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Automate Your Job Search in Claude Desktop with JobGPT MCP\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/6figr.com\/blog\/#website\",\"url\":\"https:\/\/6figr.com\/blog\/\",\"name\":\"6figr.com Blog\",\"description\":\"Empowering Employees\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/6figr.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/6figr.com\/blog\/#\/schema\/person\/731d432c21c5b7fe6599b6e0056d3ea6\",\"name\":\"Shanaya\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/6figr.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/de776b1f39d8579c6c77ee8754acd629bfe35b78c77a195481faa964be5d804a?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/de776b1f39d8579c6c77ee8754acd629bfe35b78c77a195481faa964be5d804a?s=96&d=mm&r=g\",\"caption\":\"Shanaya\"},\"url\":\"https:\/\/6figr.com\/blog\/author\/shanaya\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Automate Your Job Search in Claude Desktop with JobGPT MCP - 6figr.com Blog","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/6figr.com\/blog\/jobgpt-mcp-claude-desktop-645","og_locale":"en_US","og_type":"article","og_title":"How to Automate Your Job Search in Claude Desktop with JobGPT MCP - 6figr.com Blog","og_description":"Set up the JobGPT MCP server in Claude Desktop to search for jobs, auto-apply, generate tailored resumes, and track applications, all from a single chat window.","og_url":"https:\/\/6figr.com\/blog\/jobgpt-mcp-claude-desktop-645","og_site_name":"6figr.com Blog","article_published_time":"2026-03-03T08:52:56+00:00","article_modified_time":"2026-03-10T16:26:18+00:00","author":"Shanaya","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Shanaya","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/6figr.com\/blog\/jobgpt-mcp-claude-desktop-645#article","isPartOf":{"@id":"https:\/\/6figr.com\/blog\/jobgpt-mcp-claude-desktop-645"},"author":{"name":"Shanaya","@id":"https:\/\/6figr.com\/blog\/#\/schema\/person\/731d432c21c5b7fe6599b6e0056d3ea6"},"headline":"How to Automate Your Job Search in Claude Desktop with JobGPT MCP","datePublished":"2026-03-03T08:52:56+00:00","dateModified":"2026-03-10T16:26:18+00:00","mainEntityOfPage":{"@id":"https:\/\/6figr.com\/blog\/jobgpt-mcp-claude-desktop-645"},"wordCount":885,"commentCount":0,"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/6figr.com\/blog\/jobgpt-mcp-claude-desktop-645#respond"]}]},{"@type":"WebPage","@id":"https:\/\/6figr.com\/blog\/jobgpt-mcp-claude-desktop-645","url":"https:\/\/6figr.com\/blog\/jobgpt-mcp-claude-desktop-645","name":"How to Automate Your Job Search in Claude Desktop with JobGPT MCP - 6figr.com Blog","isPartOf":{"@id":"https:\/\/6figr.com\/blog\/#website"},"datePublished":"2026-03-03T08:52:56+00:00","dateModified":"2026-03-10T16:26:18+00:00","author":{"@id":"https:\/\/6figr.com\/blog\/#\/schema\/person\/731d432c21c5b7fe6599b6e0056d3ea6"},"breadcrumb":{"@id":"https:\/\/6figr.com\/blog\/jobgpt-mcp-claude-desktop-645#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/6figr.com\/blog\/jobgpt-mcp-claude-desktop-645"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/6figr.com\/blog\/jobgpt-mcp-claude-desktop-645#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/6figr.com\/blog"},{"@type":"ListItem","position":2,"name":"How to Automate Your Job Search in Claude Desktop with JobGPT MCP"}]},{"@type":"WebSite","@id":"https:\/\/6figr.com\/blog\/#website","url":"https:\/\/6figr.com\/blog\/","name":"6figr.com Blog","description":"Empowering Employees","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/6figr.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/6figr.com\/blog\/#\/schema\/person\/731d432c21c5b7fe6599b6e0056d3ea6","name":"Shanaya","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/6figr.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/de776b1f39d8579c6c77ee8754acd629bfe35b78c77a195481faa964be5d804a?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/de776b1f39d8579c6c77ee8754acd629bfe35b78c77a195481faa964be5d804a?s=96&d=mm&r=g","caption":"Shanaya"},"url":"https:\/\/6figr.com\/blog\/author\/shanaya"}]}},"_links":{"self":[{"href":"https:\/\/6figr.com\/blog\/wp-json\/wp\/v2\/posts\/645","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/6figr.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/6figr.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/6figr.com\/blog\/wp-json\/wp\/v2\/users\/5"}],"replies":[{"embeddable":true,"href":"https:\/\/6figr.com\/blog\/wp-json\/wp\/v2\/comments?post=645"}],"version-history":[{"count":6,"href":"https:\/\/6figr.com\/blog\/wp-json\/wp\/v2\/posts\/645\/revisions"}],"predecessor-version":[{"id":702,"href":"https:\/\/6figr.com\/blog\/wp-json\/wp\/v2\/posts\/645\/revisions\/702"}],"wp:attachment":[{"href":"https:\/\/6figr.com\/blog\/wp-json\/wp\/v2\/media?parent=645"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/6figr.com\/blog\/wp-json\/wp\/v2\/categories?post=645"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/6figr.com\/blog\/wp-json\/wp\/v2\/tags?post=645"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}