Jobber MCP Connector
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Jobber MCP ConnectorList all unpaid invoices"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Jobber MCP Connector
A Model Context Protocol (MCP) server that connects Claude to Jobber — the field service management platform. Manage clients, jobs, invoices, quotes, and scheduling through natural language.
Built by Total Property Solutions Pro.
What You Can Do
Once connected, you can ask Claude things like:
"Show me all active jobs this week"
"Create a client for John Smith at 123 Main St"
"What's on the schedule for tomorrow?"
"Create a quote for roof cleaning at $350 for the Johnsons"
"Mark job #142 as completed"
"List all unpaid invoices"
"Create an invoice for job #142 due in 30 days"
Related MCP server: Motion MCP Server
Tools Available
Tool | Description |
| List clients with name, email, phone, address |
| Create a new client |
| List jobs filtered by status |
| Create a new job/work order |
| Move a job through workflow stages |
| List invoices filtered by status |
| Create an invoice for a client or job |
| List quotes filtered by status |
| Create a new quote with line items |
| Get today's, tomorrow's, or this week's schedule |
Prerequisites
Node.js v18 or later
A Jobber account
A Jobber Developer App (free — see setup below)
Claude Desktop or another MCP-compatible client
Installation
git clone https://github.com/totalproperty/jobber-mcp-connector.git
cd jobber-mcp-connector
npm installConfiguration
Step 1 — Create a Jobber Developer App
Go to developer.getjobber.com and sign in
Click Create App
Set the Redirect URI to
http://localhost:3100/callbackCopy your Client ID and Client Secret
Step 2 — Set Up Environment Variables
cp .env.example .envEdit .env with your credentials:
JOBBER_CLIENT_ID=your_client_id_here
JOBBER_CLIENT_SECRET=your_client_secret_hereStep 3 — Authorize via OAuth2
Run the included helper to get your access and refresh tokens:
JOBBER_CLIENT_ID=your_id JOBBER_CLIENT_SECRET=your_secret node src/oauth-helper.jsThis will:
Print an authorization URL — open it in your browser
After you approve the app in Jobber, it captures the callback automatically
Print your
JOBBER_ACCESS_TOKENandJOBBER_REFRESH_TOKEN
Add both tokens to your .env file.
Step 4 — Configure Claude Desktop
Add this to your Claude Desktop MCP config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"jobber": {
"command": "node",
"args": ["/absolute/path/to/jobber-mcp-connector/src/index.js"],
"env": {
"JOBBER_CLIENT_ID": "your_client_id",
"JOBBER_CLIENT_SECRET": "your_client_secret",
"JOBBER_ACCESS_TOKEN": "your_access_token",
"JOBBER_REFRESH_TOKEN": "your_refresh_token"
}
}
}
}Restart Claude Desktop. The Jobber tools will appear automatically.
Usage Examples
List today's schedule
"What's on my schedule today?"
Create a client
"Add a new client: Sarah Johnson, sarah@email.com, (555) 867-5309, 456 Oak Ave, Tampa FL 33601"
Create a quote
"Create a quote for Sarah Johnson for pressure washing her driveway — 2 hours at $95/hr"
Check unpaid invoices
"Show me all invoices that haven't been paid yet"
Update job status
"Mark job #204 as completed"
Token Refresh
Access tokens expire periodically. The connector automatically refreshes them using your JOBBER_REFRESH_TOKEN. If you see authentication errors, re-run the OAuth helper to get fresh tokens.
Development
# Run with auto-reload on file changes
npm run dev
# Run normally
npm startProject Structure
jobber-mcp-connector/
├── src/
│ ├── index.js # MCP server entry point
│ ├── jobber-client.js # GraphQL API client + OAuth2
│ ├── queries.js # All GraphQL queries and mutations
│ ├── tools.js # Tool definitions and handlers
│ └── oauth-helper.js # One-time OAuth2 authorization helper
├── .env.example # Environment variable template
├── package.json
└── README.mdLicense
MIT — Built by Total Property Solutions Pro
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Medina-Digital-A-i/jobber-mcp-connector'
If you have feedback or need assistance with the MCP directory API, please join our Discord server