# io.github.friendlygeorge/jobber-mcp-server (npm · @supernova123/jobber-mcp-server)

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

- Trust score: 68/100 (medium)
- Change this week: +22
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- npm · `@supernova123/jobber-mcp-server`: 68/100 (this document), [markdown](https://verifymcp.io/servers/friendlygeorge-jobber-mcp-server/supernova123-jobber-mcp-server.md), [page](https://verifymcp.io/servers/friendlygeorge-jobber-mcp-server/supernova123-jobber-mcp-server)

## Channel facts

- Registry: `npm`
- Package: `@supernova123/jobber-mcp-server`
- Version: `1.0.0`
- Transport: `stdio`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Supply Chain Security**: 87/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (103 of 107), so this covers what we could see, not the whole tree.
  - No install/post-install scripts declared.
  - Only part of the dependency tree could be resolved (103 of 107), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 45/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 52 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 71/100
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 441 tokens (~73/item across 6 items; 6 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 27/100
  - Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add friendlygeorge-jobber-mcp-server -- npx -y @supernova123/jobber-mcp-server
```

### Codex

```bash
codex mcp add friendlygeorge-jobber-mcp-server -- npx -y @supernova123/jobber-mcp-server
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "friendlygeorge-jobber-mcp-server": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "@supernova123/jobber-mcp-server"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add friendlygeorge-jobber-mcp-server --command npx --arg -y --arg @supernova123/jobber-mcp-server
```

### Hermes

```yaml
mcp_servers:
  friendlygeorge-jobber-mcp-server:
    command: "npx"
    args: ["-y", "@supernova123/jobber-mcp-server"]
```

### Other

```json
{
  "mcpServers": {
    "friendlygeorge-jobber-mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "@supernova123/jobber-mcp-server"
      ]
    }
  }
}
```

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-03 (score 68, +4)

- [functional improvement] Stability: unverified → 0.27

### 2026-08-02 (score 64, +30)

- [security regression] Provenance: unverified → fail
- [security improvement] Install scripts: unverified → pass
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Malware scan: unverified → pass
- [functional improvement] License: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] Maintenance: unverified → pass
- [functional] Licence: MIT

### 2026-08-01 (score 34, −5)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-31 (score 39, −7)

- [security regression] Malware scan: pass → unverified
- [functional improvement] Schema quality: unverified → good

### 2026-07-27 (score 46)

First indexed and scored.

## MCP tools (6)

### `list_clients` (~97 tokens)

List Jobber clients. Optional filters: search (matches name or email), isLead (true=leads only, false=active only), limit (default 50).

Input parameters:

- `isLead` (boolean): If true, only leads. If false, only non-leads.
- `limit` (integer): Maximum number of clients to return (default 50).
- `search` (string): Substring to match against client name or email.

### `get_client` (~48 tokens)

Get a Jobber client by id, including their contact info and recent jobs.

Input parameters:

- `id` (string, required): The Jobber client id (e.g. 'client-101' in mock mode).

### `get_job` (~56 tokens)

Get the full detail of a Jobber job by id, including status, assigned staff, schedule, and line items.

Input parameters:

- `id` (string, required): The Jobber job id (e.g. 'job-201' in mock mode).

### `list_invoices` (~51 tokens)

List Jobber invoices, optionally filtered by client and/or status.

Input parameters:

- `clientId` (string): Filter to invoices for a specific client id.
- `status` (string): Filter to invoices with this status.

### `get_invoice` (~51 tokens)

Get the full detail of a Jobber invoice by id, including line items and payment status.

Input parameters:

- `id` (string, required): The Jobber invoice id (e.g. 'invoice-301' in mock mode).

### `create_quote` (~138 tokens)

Create a new quote in Jobber for a specific client. Returns the created quote with its line items, subtotal, and total. Amounts in line items are in dollars and are converted to cents internally.

Input parameters:

- `clientId` (string, required): The Jobber client id to quote.
- `expiryDate` (string): Optional ISO date (YYYY-MM-DD) when this quote expires.
- `lineItems` (array, required): Line items that make up this quote.
- `message` (string): Optional cover letter / scope notes shown to the client.
- `subject` (string, required): Short summary of the quote (e.g. 'Re-roof north slope').

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/friendlygeorge-jobber-mcp-server/supernova123-jobber-mcp-server#diagnostics

## Score history

- 2026-08-03: 68
- 2026-08-02: 64
- 2026-08-01: 34
- 2026-07-31: 39
- 2026-07-30: 46
- 2026-07-28: 46
- 2026-07-27: 46

## Links

- npm package: https://www.npmjs.com/package/@supernova123/jobber-mcp-server
- Socket report: https://socket.dev/npm/package/@supernova123/jobber-mcp-server
- Repository: https://github.com/friendlygeorge/jobber-mcp-server
- Changelog RSS feed: https://verifymcp.io/servers/friendlygeorge-jobber-mcp-server/supernova123-jobber-mcp-server/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/friendlygeorge-jobber-mcp-server/supernova123-jobber-mcp-server/changelog.json
- HTML version of this page: https://verifymcp.io/servers/friendlygeorge-jobber-mcp-server/supernova123-jobber-mcp-server
