Auto apply & search jobs, manage resumes, and track applications
JobGPT MCP Server
The official MCP server for JobGPT — auto apply & search jobs, generate and manage custom tailored resumes, and track applications directly from Claude, Cursor, Windsurf, and any MCP-compatible AI tool.
What You Can Do
Ask your AI assistant things like:
- "Find remote senior React jobs paying over $150k"
- "Auto-apply to the top 5 matches from my job hunt"
- "Generate a tailored resume for this Google application"
- "Show my application stats for the last 7 days"
- "Find recruiters for this job and draft an outreach email"
The MCP server connects your AI assistant to the full JobGPT platform — 34 tools covering job search, applications, resumes, outreach, and more.
Quick Start
1. Get Your API Key
- Go to 6figr.com/account
- Scroll to MCP Integrations
- Click Generate API Key
- Copy the key (starts with
mcp_)
2. Add to Your AI Tool
Add the following config to your AI tool. Replace your-api-key-here with your actual key. No installation required — connects directly to the hosted server.
Setup by Client
Claude Desktop
Claude Desktop does not support remote MCP servers directly in the config file. Use the mcp-remote bridge to connect (requires Node.js 18+).
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"jobgpt": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://mcp.6figr.com/mcp",
"--header",
"Authorization:${AUTH_HEADER}"
],
"env": {
"AUTH_HEADER": "Bearer your-api-key-here"
}
}
}
}
Alternatively, you can add it via Settings > Connectors in Claude Desktop using the URL https://mcp.6figr.com/mcp.
Claude Code (CLI)
Option A: One-liner with claude mcp add (fastest):
claude mcp add jobgpt -t http -u https://mcp.6figr.com/mcp --header "Authorization: your-api-key-here"
Option B: Edit settings.json manually
Add to ~/.claude/settings.json:
{
"mcpServers": {
"jobgpt": {
"type": "http",
"url": "https://mcp.6figr.com/mcp",
"headers": {
"Authorization": "your-api-key-here"
}
}
}
}
Cursor
Go to Settings > MCP > Add new MCP server, or add to ~/.cursor/mcp.json:
{
"mcpServers": {
"jobgpt": {
"type": "http",
"url": "https://mcp.6figr.com/mcp",
"headers": {
"Authorization": "your-api-key-here"
}
}
}
}
Windsurf
Go to Settings > Cascade > MCP > Add Server > Add custom server, or add to ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"jobgpt": {
"type": "http",
"url": "https://mcp.6figr.com/mcp",
"headers": {
"Authorization": "your-api-key-here"
}
}
}
}
Cline (VS Code)
Open the Cline MCP settings in VS Code and add:
{
"mcpServers": {
"jobgpt": {
"type": "http",
"url": "https://mcp.6figr.com/mcp",
"headers": {
"Authorization": "your-api-key-here"
}
}
}
}
Continue (VS Code / JetBrains)
Add to your Continue config (~/.continue/config.yaml):
mcpServers:
- name: jobgpt
type: http
url: https://mcp.6figr.com/mcp
headers:
Authorization: "your-api-key-here"
Alternative: Run Locally
If you prefer to run the server on your machine (requires Node.js 18+):
{
"mcpServers": {
"jobgpt": {
"command": "npx",
"args": ["-y", "jobgpt-mcp-server"],
"env": {
"JOBGPT_API_KEY": "your-api-key-here"
}
}
}
}
Available Tools
Job Search
| Tool | Description |
|---|---|
search_jobs |
Search jobs with filters — titles, locations, companies, skills, salary, remote, H1B sponsorship |
match_jobs |
Get new job matches from a saved job hunt (only unseen jobs) |
get_job |
Get full details of a specific job posting |
Profile & Salary
| Tool | Description |
|---|---|
get_profile |
View your profile — skills, experience, work history, education |
update_profile |
Update name, headline, location, skills, experience |
get_salary |
Get your current compensation details |
update_salary |
Update base salary, stocks, bonus, target salary |
get_currencies |
List supported currencies (for salary updates) |
get_credits |
Check your remaining credits balance |
Job Hunts
| Tool | Description |
|---|---|
list_job_hunts |
List your saved job hunt |
Tools (10)
search_jobsSearch jobs with filters including titles, locations, companies, skills, salary, remote, and H1B sponsorship.match_jobsGet new job matches from a saved job hunt.get_jobGet full details of a specific job posting.get_profileView your profile including skills, experience, work history, and education.update_profileUpdate name, headline, location, skills, and experience.get_salaryGet your current compensation details.update_salaryUpdate base salary, stocks, bonus, and target salary.get_currenciesList supported currencies for salary updates.get_creditsCheck your remaining credits balance.list_job_huntsList your saved job hunts.Environment Variables
JOBGPT_API_KEYrequiredAPI key generated from 6figr.com/accountAUTH_HEADERrequiredAuthorization header for remote MCP bridgeConfiguration
{"mcpServers":{"jobgpt":{"command":"npx","args":["-y","jobgpt-mcp-server"],"env":{"JOBGPT_API_KEY":"your-api-key-here"}}}}