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 agentmods add skills/chrischall/simplepractice-mcp/simplepractice-fpxnpx skills add chrischall/simplepractice-mcp --skill simplepractice-fpxgit clone --depth 1 https://github.com/chrischall/simplepractice-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/simplepractice-mcp/simplepractice-fpx)<a href="https://agentmods.dev/skills/chrischall/simplepractice-mcp/simplepractice-fpx"><img src="https://agentmods.dev/badge/skills/chrischall/simplepractice-mcp/simplepractice-fpx.svg" alt="Measured on agentmods" 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.00121 | $0.03172 |
| Opus 5 | $0.00060 | $0.01586 |
| Sonnet 5 | $0.00024 | $0.00634 |
| Haiku 4.5 | $0.00012 | $0.00317 |
Grade B, and why
simplepractice-fpx scanned grade B with 2 findings 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 5d 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.
Asks for rootmediumPrivilege escalation
A mod that escalates privileges can change anything on the machine, not only the project.
> the portal. Keep it `chmod 600`, out of git, and off shared machines. Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
sign, announcements, practice and clinician info — with plain `curl` against How it starts
The opening of the file, as written. The whole thing — 269 lines — stays where its author put it; the contents beside it link to each section on GitHub.
SimplePractice Client Portal via curl (+ optional fpx)
The Client Portal is an Ember app whose backend is a plain JSON:API at
https://<practice>.clientsecure.me/client-portal-api. It has no bot wall
— every endpoint below answers ordinary server-side curl once you hold a
session cookie. So this skill is curl-first; fpx appears only as an optional
one-time way to lift the cookie out of a browser you're already signed into.
There is no password. Sign-in is passwordless: SimplePractice emails you
either a magic link or a 6-digit PIN, and you trade that for a session cookie.
That flow carries no captcha (reCAPTCHA guards only the new-client request,
waitlist and contact forms), so §1 below works headlessly with nothing but
curl and access to your inbox.
This is protected health information — your own therapy/medical record. Treat the cookie jar as a credential: it is a full-access bearer token for the portal. Keep it
chmod 600, out of git, and off shared machines.
Your practice subdomain
Every URL is scoped to one practice. Take the host from the portal link your provider sent you and export it once:
export SP_HOST='achievebalancetherapy.clientsecure.me' # <-- yours
export SP_API="https://$SP_HOST/client-portal-api"
export SP_JAR="$HOME/.simplepractice-cookies"
# curl creates a cookie jar world-readable (644). This one holds a live
# session for a medical record, so create it 0600 BEFORE curl ever writes it.
[ -e "$SP_JAR" ] || ( umask 077; : > "$SP_JAR" )
chmod 600 "$SP_JAR"
The four headers — all of them, on every call
sp() { curl -s -b "$SP_JAR" -c "$SP_JAR" \
-H 'Api-Version: 2026-05-25' \
-H 'Application-Build-Version: 0.0.0' \
-H 'Application-Platform: web' \
-H 'Accept: application/vnd.api+json' "$@"; }
Omit Application-Build-Version and the API rejects the call with
400 {"errors":[{"title":"Application build version is missing"}]} — verified.
Api-Version is the API's own dated contract version, unrelated to any package
version; send it as-is.
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.
- 5d ago First seen · 269 lines · 121 tokens per session scan B 12d6400354d3
simplepractice-fpx is a skill published in the GitHub repository chrischall/simplepractice-mcp (0 stars, last pushed yesterday), licensed MIT. It adds 121 tokens to every session and 3,172 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it B with 2 findings (asks for root, 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
dcf-model
Build discounted cash flow valuation workbooks in Excel.
comps-analysis
Build comparable-company valuation workbooks in Excel.
excel-author
Build auditable financial workbooks headless via openpyxl.
pitch-deck
Populates investment banking pitch deck templates with data from source files. Use when: user provides a PowerPoint template to fill in, user has source data (Excel/CSV) to populate into slides, user mentions populating or filling a pitch deck template, or user needs to transfer data into existing slide layouts. Not…
lbo-model
This skill should be used when completing LBO (Leveraged Buyout) model templates in Excel for private equity transactions, deal materials, or investment committee presentations. The skill fills in formulas, validates calculations, and ensures professional formatting standards that adapt to any template structure.
investor-materials
Create and update pitch decks, one-pagers, investor memos, accelerator applications, financial models, and fundraising materials. Use when the user needs investor-facing documents, projections, use-of-funds tables, milestone plans, or materials that must stay internally consistent across multiple fundraising assets.