Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add chrischall/housecallpro-mcp --skill housecallprogit clone --depth 1 https://github.com/chrischall/housecallpro-mcpWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/chrischall/housecallpro-mcp/housecallpro)<a href="https://agentmods.dev/skills/chrischall/housecallpro-mcp/housecallpro"><img src="https://agentmods.dev/badge/skills/chrischall/housecallpro-mcp/housecallpro/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/chrischall/housecallpro-mcp/housecallpro"><img src="https://agentmods.dev/badge/skills/chrischall/housecallpro-mcp/housecallpro.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00088 | $0.01572 |
| Opus 5 | $0.00044 | $0.00786 |
| Sonnet 5 | $0.00018 | $0.00314 |
| Haiku 4.5 | $0.00009 | $0.00157 |
Grade A, and why
housecallpro scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
with plain curl, instead of running the housecallpro-mcp server. Use when you want the data without the MCP, in a How it starts
The opening of the file, as written. The whole thing — 153 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Housecall Pro customer portal via curl (no MCP)
This reads the customer side of Housecall Pro: the estimate or invoice a contractor emails or texts you. It is not the Housecall Pro public API — that one serves the business running on Housecall Pro and needs an API key from their account.
No browser bridge is needed. app.housecallpro.com is not bot-walled; a
plain curl gets a 200. Do not reach for fpx here.
The one thing to know first
There is no account and no standing link: Housecall Pro sends a separate, disposable link per document, so you work from whichever link you were sent.
Your link is a bearer credential. Anyone holding it can read the estimate and decline it. Keep it in a variable or a file you control, never in a command you paste into a shared transcript, and never commit it.
Setup
Two forms of link exist, and estimates and invoices use different token
shapes: an estimate token is 129 characters (two 64-char hex halves joined by
_), an invoice token is a bare 32-char hex string. The short link redirects to
whichever applies:
# What your contractor sent (short form)
SHORT='https://pro.housecallpro.com/mobile_estimate/XXXXXXXXXX' # or /mobile_invoice/…
# Resolve it to the retrieval token (an estimate's is 129 chars, an invoice's 32)
HCP_TOKEN=$(curl -sI "$SHORT" | tr -d '\r' | awk 'tolower($1)=="location:"{print $2}' | sed 's#.*/##')
# If you already have a client.housecallpro.com/estimates/… or /invoices/… link, just:
# HCP_TOKEN='<the last path segment>'
echo "${#HCP_TOKEN}" # 129 for an estimate, 32 for an invoice
Read the estimate
curl -s -H 'Accept: application/json' \
"https://app.housecallpro.com/alpha/customer_estimates/$HCP_TOKEN" > estimate.json
No Authorization header — reads carry the token in the path.
Money is integer cents. total_amount: 34639 means $346.39. Divide by 100
before reporting anything. tax.rate is the exception: it is a fraction
(0.0825 = 8.25%) and must not be scaled.
What ships with it
1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 10d ago First seen · 153 lines · 88 tokens per session scan A a1280c521628
housecallpro is a skill published in the GitHub repository chrischall/housecallpro-mcp (0 stars, last pushed today), licensed MIT. It adds 88 tokens to every session and 1,572 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
sector-rotation
An analysis framework for comparing industries in the Chinese A-share stock market, using business conditions, price momentum, valuation, and money flows. It produces rankings and higher- or lower-allocation suggestions.
strategy-pivot-designer
Detect backtest iteration stagnation and generate structurally different strategy pivot proposals when parameter tuning reaches a local optimum.
twitter-reader
Read Twitter/X for financial research using opencli (read-only). Use this skill whenever the user wants to read their Twitter feed, search for financial tweets, view bookmarks, look up user profiles, or gather market sentiment from Twitter/X. Triggers include: "check my feed", "search Twitter for", "show my…
chenhao-limit-up
A framework for judging Chinese A-share stocks that have reached the daily price-rise limit, using market mood, sector leadership, and trading momentum.
trading-risk-gate
Unified pre-trade safety gate: Ruin check (Law #1), ergodicity audit, and win-rate dominance validation. Absorbs: ergodicity-check, law-of-ruin, win-rate-dominance.
furusato
A Japanese hometown-tax donation manager for furusato nozei, a system where donations to municipalities can qualify for an income-tax or local-tax deduction. It reads donation receipts, stores donation records, and calculates deduction limits.