housecall-pro-mcp
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., "@housecall-pro-mcpList my upcoming jobs"
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.
housecall-pro-mcp
A local MCP (Model Context Protocol) server that wraps the Housecall Pro Public API (v1) so Claude Desktop or Claude Code can read and write your Housecall Pro data directly.
Built for personal/local use — it talks to Housecall Pro with a single API key, runs over stdio, and is meant to be added to your own Claude Desktop / Claude Code config.
Before you start
Housecall Pro's own docs and third-party sources disagree on whether full API access requires their MAX plan or is available on lower Pro tiers — that's account-specific. Check your own account: Housecall Pro → Settings → API / App Store card. If you don't see an option to generate an API key there, you may need to request API access from Housecall Pro support first.
Related MCP server: mcp-connect
Setup
npm install
cp .env.example .env
# edit .env and paste your real HCP_API_KEY
npm run buildAdd to Claude Desktop
Edit your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS) and add:
{
"mcpServers": {
"housecall-pro": {
"command": "node",
"args": ["/absolute/path/to/housecall-pro-mcp/dist/src/index.js"],
"env": {
"HCP_API_KEY": "your_housecall_pro_api_key_here"
}
}
}
}Restart Claude Desktop after saving.
Add to Claude Code
claude mcp add housecall-pro --env HCP_API_KEY=your_housecall_pro_api_key_here -- node /absolute/path/to/housecall-pro-mcp/dist/src/index.jsTools
All 23 documented Housecall Pro v1 endpoints are wrapped. Each tool's description links to the exact Housecall Pro docs page for that endpoint — worth checking before using create_*/update_* tools, since their body argument is passed straight through rather than hard-coded (see "A note on accuracy" below).
Area | Tools |
Company |
|
Customers |
|
Jobs |
|
Estimates |
|
Invoices |
|
Employees |
|
Leads |
|
All list_* tools accept page, page_size, sort_by, sort_direction, plus an extra_query object for any endpoint-specific filters (e.g. customer_id, work_status) not modeled explicitly.
Bulk export (for the ServiceTitan migration)
For pulling everything out of Housecall Pro in one shot rather than one call at a time through chat, there's a standalone script:
npm run export-allThis pages through customers, jobs, estimates, invoices, employees, and leads, and writes:
export/<resource>.json— full raw recordsexport/<resource>.csv— flattened, spreadsheet-friendly version
It's a plain script (not an MCP tool) on purpose — paginating through potentially thousands of records and returning them through a single chat tool call would blow past reasonable response sizes. Run it directly, then hand the CSVs/JSON to whatever process you're using to load data into ServiceTitan.
Heads up: the script guesses the response shape of each list endpoint (e.g. assumes GET /customers returns { customers: [...] }). If Housecall Pro's actual shape differs, it won't silently produce a broken export — it stops for that resource and writes the raw first-page response to export/_debug_<resource>_page1.json so you can see the real shape. Check your terminal output after running it.
A note on accuracy
This was built from Housecall Pro's public docs and a third-party consolidated API reference, not by testing against a live account (I don't have your API key). Everything here should work as documented, but:
The exact JSON field names Housecall Pro expects in
create_job,create_customer,create_estimate,create_lead,update_customer,update_job_schedule, andbulk_update_estimate_option_line_itemsrequest bodies were not hard-coded into schemas here, specifically so nothing gets guessed/fabricated. Each of those tools takes a rawbodyobject and links to the exact docs page — check the docs (or make one test call and read the error message) before relying on it.List-endpoint filter params beyond pagination/sorting (e.g.
customer_idon jobs) aren't hard-coded either — useextra_queryand confirm the param name against the linked docs.First real call against your account is the actual test. If something 404s or the auth header format is wrong, the error message will include Housecall Pro's own response body, which should point at the fix.
Project layout
src/
housecallClient.ts Thin fetch wrapper (auth header, pagination, error handling)
index.ts MCP server + all 23 tool registrations
scripts/
export-all.ts Bulk JSON/CSV export script (see above)Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityCmaintenanceMCP server for Housecall Pro, providing 5 tools for AI agents to register customers, schedule jobs, create estimates, log leads, and generate invoices (env-gated).Last updated5MIT
- Alicense-qualityBmaintenanceA dead simple MCP server for exposing your app functions to AI agents like Claude Desktop.Last updated305MIT
- FlicenseAqualityBmaintenanceMCP server wrapping a mock internal ops platform (FastAPI + SQLite) so Claude Code can read and write employee, project, task, and time data through natural language.Last updated8
- Alicense-qualityCmaintenanceA remote MCP server that exposes the ServiceTitan API as tools, enabling Claude and other clients to manage customers, jobs, pricebook, invoicing, and more with write safety and built-in observability.Last updatedMIT
Related MCP Connectors
Hosted Amazon Seller Central and Amazon Ads MCP server for Claude, ChatGPT, Cursor, and agents.
Hosted Amazon Seller and Vendor MCP server for Claude, ChatGPT, Cursor, Codex, Gemini, Copilot.
MCP server giving Claude AI access to 22+ NYC public-record databases for real estate due diligence
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/tedmcfadden/housecall-pro-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server