npm @supernova123/jobber-mcp-serverstdioMITupdated 2mo ago
An MCP server for Jobber — connect any MCP-compatible client to your Jobber field-service data.
Este repositório foi arquivado pelo dono. Continua funcionando, mas não recebe atualizações.
O que dá para fazer com jobber mcp server?
Jobber MCP Server
An MCP server for Jobber — connect any MCP-compatible client to your Jobber field-service data.
What is this?
An MCP (Model Context Protocol) server that gives AI assistants and agents access to your Jobber data — clients, jobs, invoices, and quotes — through a clean, typed API.
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.
Why use this?
- 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
Quick Start
Add to your MCP client config (e.g. claude_desktop_config.json):
{
"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"
}
}
}
}
Or try with mock data first (no Jobber account needed):
JOBBER_MOCK_MODE=true npx jobber-mcp-server
Get API credentials at Jobber Developer Portal.
Use it
Ask your AI assistant things like:
- "List all my clients"
- "Show me the details for client-101"
- "What jobs are assigned to Alex Reyes?"
- "Create a quote for Northwind Roofing: 2 hours of emergency repair at $150/hr"
- "Which invoices are overdue?"
Tools
| Tool | Description |
|---|---|
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 |
Use Cases
Daily Operations Check
"Show me today's jobs and any overdue invoices" — start your morning with a full picture of what needs attention. No more logging into Jobber's dashboard first thing.
Client Research
"What's the history with Northwind Roofing?" — pull up client details, recent jobs, and outstanding invoices before a site visit or sales call.
Quote Generation
"Create a quote for Mrs. Chen: gutter cleaning, 1 hour, $120" — draft and send quotes from the field without switching apps.
Invoicing Audit
"Show me all unpaid invoices over $500" — find overdue payments and follow up without manually filtering through Jobber's invoice list.
Field Service Reporting
"Summarize Alex Reyes' jobs this week" — generate performance summaries for team meetings or payroll without pulling reports manually.
Security
- OAuth credentials required — Jobber API uses OAuth2. Credentials are passed via environment variables, never logged.
- No local file access — does not read or write any files on your machine (unless you enable mock mode).
- No shell access — does not execute commands or spawn processes.
- Mock mode safe —
JOBBER_MOCK_MODE=trueuses fake data with no API calls to Jobber. - Open source — MIT licensed. Inspect the code at GitHub.
Troubleshooting
"Authentication failed" errors
Verify your JOBBER_CLIENT_ID, JOBBER_CLIENT_SECRET, and JOBBER_ACCESS_TOKEN are correct. Tokens expire — check the Jobber Developer Portal for fresh credentials.
"No data found" in mock mode
Make sure JOBBER_MOCK_MODE=true is set in your environment or MCP config. Mock mode creates sample clients, jobs, and invoices automatically.
Server won't start
Make sure Node.js 18+ is installed: node --version. If using npx, ensure npm is up to date: npm install -g npm@latest.
MCP client can't connect
Verify the config path is correct. Claude Desktop uses ~/Library/Application Support/Claude/claude_desktop_config.json on macOS and %APPDATA%\Claude\claude_desktop_config.json on Windows. Restart the client after config changes.
Slow responses
Jobber's GraphQL API has ~200-500ms latency. Complex queries (e.g., listing clients with full job history) may take longer. Use list_clients with a limit parameter to speed up initial queries.
Jobber API Setup
To use with your real Jobber account:
- Go to Jobber Developer Portal
- Create an app and get your
client_idandclient_secret - Complete OAuth flow to get an
access_token - Add credentials to
.envor MCP client config
Requirements
- Node.js 18+
- A Jobber account with API access, or use
JOBBER_MOCK_MODE=truefor testing
Development
git clone https://github.com/friendlygeorge/jobber-mcp-server.git
cd jobber-mcp-server
npm install
npm run build
npm run inspect # opens MCP Inspector for testing
License
MIT
Instalação
Adicione jobber mcp server ao seu cliente. Escolha o que você usa.
claude mcp add jobber-mcp-server -- npx -y @supernova123/jobber-mcp-servercodex mcp add jobber-mcp-server -- npx -y @supernova123/jobber-mcp-serveramp mcp add jobber-mcp-server -- npx -y @supernova123/jobber-mcp-server{
"mcpServers": {
"jobber-mcp-server": {
"command": "npx",
"args": [
"-y",
"@supernova123/jobber-mcp-server"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"jobber-mcp-server": {
"command": "npx",
"args": [
"-y",
"@supernova123/jobber-mcp-server"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"jobber-mcp-server","command":"npx","args":["-y","@supernova123/jobber-mcp-server"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"jobber-mcp-server": {
"command": "npx",
"args": [
"-y",
"@supernova123/jobber-mcp-server"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"jobber-mcp-server": {
"command": "npx",
"args": [
"-y",
"@supernova123/jobber-mcp-server"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"jobber-mcp-server": {
"command": "npx",
"args": [
"-y",
"@supernova123/jobber-mcp-server"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"jobber-mcp-server": {
"type": "local",
"command": "npx",
"args": [
"-y",
"@supernova123/jobber-mcp-server"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"jobber-mcp-server": {
"command": {
"path": "npx",
"args": [
"-y",
"@supernova123/jobber-mcp-server"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y @supernova123/jobber-mcp-serverRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
6 ferramentas
jobber mcp server expõe 6 ferramentas a um agente conectado.
- 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
Pontuação
67 / 100
Boa
- Documentação25/25
- Manutenção11/25
- Confiança13/20
- Capacidade6/15
- Instalação12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 81 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 6 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Histórico de versões
| Versões | Publicada |
|---|---|
| 1.0.0Mais recente | 6 de jun. de 2026 |