Jobber MCP Server

MCP server for Jobber (home services SaaS) — exposes tools for clients, jobs, invoices, and quote...

Local serverstdioGo

What is the Jobber MCP server?

Most payments and commerce work still happens through a UI a human drives. Jobber MCP server moves it into the conversation instead. MCP server for Jobber (home services SaaS) — exposes tools for clients, jobs, invoices, and quote...

The short version

Use it with Claude Desktop, Cursor, Windsurf, Cline, or any MCP-compatible client to ask questions about your business data, create quotes, and manage field-service operations through natural language.

  • 6 built-in tools — — clients, jobs, invoices, and quotes in one server
  • Mock mode — — try it instantly with fake data, no Jobber account needed
  • Natural language queries — — "show me overdue invoices" just works
  • Quote creation — — create and send quotes without opening Jobber
  • Client lookup — — find client details, contact info, and job history
  • Works with every MCP client — — Claude Desktop, Cursor, Windsurf, Cline, and more

The tools it exposes

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

  • list_clients — List clients with optional search, lead filter, and limit
  • get_client — Get a client by ID with contact info and recent jobs
  • get_job — Full job detail: status, assignees, schedule, line items
  • list_invoices — List invoices filtered by client and/or status
  • get_invoice — Full invoice detail with line items and payment status
  • create_quote — Create a new quote for a client with line items

Getting it running

Installation goes through your MCP client rather than a global install: point it at jobber-mcp-server on npm and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.

What it needs from you

Configuration is passed through the environment: JOBBER_ACCESS_TOKEN, JOBBER_CLIENT_ID, JOBBER_CLIENT_SECRET. 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.

  • Node.js 18+ - A Jobber account with API access, or use JOBBER_MOCK_MODE=true for testing

How it compares

Among the payments and commerce 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. Jobber's toolset — list_clients, get_client, get_job and 3 more — is a fair guide to whether it matches your workflow. It is maintained by friendlygeorge; worth a glance at recent repository activity before you build anything load-bearing on it.

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

Things to watch

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • 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.

Available tools

ToolWhat it does
list_clientsList clients with optional search, lead filter, and limit
get_clientGet a client by ID with contact info and recent jobs
get_jobFull job detail: status, assignees, schedule, line items
list_invoicesList invoices filtered by client and/or status
get_invoiceFull invoice detail with line items and payment status
create_quoteCreate a new quote for a client with line items

How to install the Jobber MCP server

{
  "mcpServers": {
    "jobber": {
      "command": "npx",
      "args": ["-y", "jobber-mcp-server"],
      "env": {
        "JOBBER_ACCESS_TOKEN": "your_token",
        "JOBBER_CLIENT_ID": "your_client_id",
        "JOBBER_CLIENT_SECRET": "your_client_secret"
      }
    }
  }
}

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

Configuration

  • Node.js 18+ - A Jobber account with API access, or use JOBBER_MOCK_MODE=true for testing
VariableDescriptionRequired
JOBBER_ACCESS_TOKENCredential the server authenticates with.Yes
JOBBER_CLIENT_IDConfiguration value read at startup.Optional
JOBBER_CLIENT_SECRETCredential the server authenticates with.Yes

Example prompts to try

  • Use Jobber to list clients.
  • Use Jobber to get client.
  • Use Jobber to get job.

Frequently asked questions

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