simplepractice-fpx

simplepractice-fpx is a skill for Claude Code from chrischall/simplepractice-mcp. It costs 121 tokens per session (3,172 once invoked), scanned B, original, MIT.

A shell-based way to read a SimplePractice client portal, an online service used by therapy and medical practices. It uses curl, a command-line tool for making web requests, and passwordless sign-in through an emailed link or PIN.

In plain words
What is it for?
Use it to read appointments, invoices, receipts, documents, announcements, and practice or clinician details from a client portal. Treat the session cookie as a private medical-record credential.
Why use it?
It lets you access portal information without running a separate SimplePractice MCP server or controlling a browser.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the simplepractice plugin — 2 skills, 2 MCP servers shipped together

Install

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.

agentmods
npx agentmods add skills/chrischall/simplepractice-mcp/simplepractice-fpx
Any agent
npx skills add chrischall/simplepractice-mcp --skill simplepractice-fpx
Clone the repo
git clone --depth 1 https://github.com/chrischall/simplepractice-mcp

Made for: Claude Code.

Or install simplepractice, the plugin that ships this one along with the rest of its 2 skills, 2 MCP servers.

Wrote 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.

agentmods badge for simplepractice-fpx

README.md
[![agentmods](https://agentmods.dev/badge/skills/chrischall/simplepractice-mcp/simplepractice-fpx.svg)](https://agentmods.dev/skills/chrischall/simplepractice-mcp/simplepractice-fpx)
Your own site
<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>
Per session 121 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,172 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 2 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 5d ago against content hash 12d6400354d3, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

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
skills/simplepractice-fpx/SKILL.md · 269 lines

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.

Read the full file on GitHub · 269 lines

Files

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.

Changes

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.

  1. 5d ago First seen · 269 lines · 121 tokens per session scan B 12d6400354d3

Subscribe to this mod's changes

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.