Jobgpt MCP Server

AI-powered job search, auto-apply, resume generation, application tracking, and recruiter outreach

Remote serverstreamable-httpTypeScript

What is the Jobgpt MCP server?

Most developer tooling work still happens through a UI a human drives. Jobgpt MCP server moves it into the conversation instead. AI-powered job search, auto-apply, resume generation, application tracking, and recruiter outreach.

The short version

The MCP server connects your AI assistant to the full JobGPT platform — 34 tools covering job search, applications, resumes, outreach, and more.

Getting it running

Because this one is hosted, setup is mostly authentication — you point your client at the endpoint and approve access. Nothing runs on your machine, so there is no runtime to keep patched.

The tools it exposes

The server publishes 5 tools. What each one is for:

  • Cursor — Go to Settings > MCP > Add new MCP server, or add to ~/.cursor/mcp.json:
  • Windsurf — Go to Settings > Cascade > MCP > Add Server > Add custom server, or add to ~/.codeium/windsurf/mcp_config.json:
  • Applications — The Applications tool exposed by this server
  • Resume — The Resume tool exposed by this server
  • Outreach — The Outreach tool exposed by this server

What it needs from you

Configuration is passed through the environment: AUTH_HEADER, JOBGPT_API_KEY, DEBUG, JOBGPT_API_URL. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

Things to watch

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

How it compares

Among the developer tooling options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Jobgpt's toolset — Cursor, Windsurf, Applications and 2 more — is a fair guide to whether it matches your workflow. It is maintained by 6figr-com; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Jobgpt's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Available tools

ToolWhat it does
CursorGo to **Settings** > **MCP** > **Add new MCP server**, or add to ~/.cursor/mcp.json:
WindsurfGo to **Settings** > **Cascade** > **MCP** > **Add Server** > **Add custom server**, or add to ~/.codeium/windsurf/mcp_config.json:
ApplicationsThe Applications tool exposed by this server.
ResumeThe Resume tool exposed by this server.
OutreachThe Outreach tool exposed by this server.

How to install the Jobgpt MCP server

{
  "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"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
AUTH_HEADERConfiguration value read at startup.Optional
JOBGPT_API_KEYCredential the server authenticates with.Yes
DEBUGConfiguration value read at startup.Optional
JOBGPT_API_URLEndpoint or connection string the server talks to.Yes

Example prompts to try

  • Use Jobgpt to Cursor.
  • Use Jobgpt to Windsurf.
  • Use Jobgpt to Applications.

Frequently asked questions

It connects Jobgpt to MCP-compatible AI assistants such as Claude and Cursor, exposing 5 tools (Cursor, Windsurf, Applications, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Jobgpt directly.