simplepractice-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., "@simplepractice-mcpWhat appointments do I have booked?"
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.
simplepractice-mcp
MCP server for the SimplePractice Client Portal — the side a practice's clients log into, not the clinician side. Appointments, billing, paperwork, and announcements, read over the portal's own JSON:API.
Developed and maintained by AI (Claude Code). Use at your own discretion.
What it reads
Tool | What it gives you |
| practice, current client, every client this login covers, cancellation policy, feature permissions |
| scheduled or requested appointments, with clinician and location |
| invoices · statements · superbills · receipts · account history |
| balance due and per-category counts |
| saved cards — brand, last four, expiry |
| paperwork sent to you, with an outstanding-only filter |
| one request in full, with its questions and answers |
| files the practice has shared |
| practice announcements, with unread counts |
| sign-in |
Everything is read-only. Cancelling, signing, and paying happen in the portal.
Related MCP server: practice-fusion-mcp
Setup
npm install -g simplepractice-mcp
export SIMPLEPRACTICE_PRACTICE=achievebalancetherapy # or the full hostSIMPLEPRACTICE_PRACTICE is the practice's portal address — the slug or the
whole <practice>.clientsecure.me host from the link your provider emailed.
Variable | |
| required — portal slug or host |
| optional — session path (default |
Signing in
The Client Portal has no password. SimplePractice emails a one-time link (or a 6-digit PIN); you trade it for a session cookie:
simplepractice_request_sign_in_link { email, confirm: true }Open the email, copy the link.
simplepractice_verify_sign_in_token { link }— pass the whole link; the token is its#fragment and the tool extracts it.
Links are single-use — replaying one answers
401 "Authorization has already been used or expired" — and last 24 hours. The
request endpoint is rate-limited per address and per IP, which is why
sending is confirm-gated: a retry loop locks you out of the only way in. There
is no refresh token; when the session lapses, you sign in again.
The whole chain is verified end to end against a live portal — request, the
emailed link, the exchange returning verified plus a session cookie, and an
authenticated read with that new session.
Because that flow needs nothing but HTTP and your inbox, this server has no browser dependency and can run anywhere.
Without the server
skills/simplepractice-fpx does the same reads with curl, either signing in
by magic link or lifting the session cookie from a browser tab with
fpx.
Notes from building this
The portal is an Ember app that ships public sourcemaps, so its models,
adapters and routes are readable directly — docs/SIMPLEPRACTICE-API.md
records the endpoints and the traps, all confirmed against a live portal:
The SPA catch-all answers HTTP 200 with
text/htmlfor any path the API does not define./cardsand/client-billing-overviewslook like working, empty endpoints and are not endpoints at all — both areincluderelationships of/clients/<id>.hasDocumentPdf, a card'sisDefault, and the client'spermissionsblob are all strings, not booleans or objects.Billing pages by cursor (
page[before]= a row'scursorId), appointments page by number. The two are not interchangeable.
Development
npm install
npm run build
npm test # 151 tests
npm run test:coverage # 100% enforced
npm run typecheck # vitest does not run tsc — this doesLicense
MIT
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
- FlicenseNot gradedqualityDmaintenanceEnables read-only access to InvoiceNinja data, including invoices, expenses, clients, and tax reports, for AI assistants like Claude.1
- AlicenseAqualityAmaintenanceEnables read-only FHIR access to Practice Fusion EHR to search patients, appointments, conditions, medications, and lab results.13223MIT
- AlicenseNot gradedqualityCmaintenanceEnables clinical teams to list patients with active sharing and read glucose, graph, logbook, and statistics from LibreLink Up, with secure magic-link login and encrypted credentials.MIT
- AlicenseAqualityAmaintenanceEnables Claude to read appointments, invoices, quotes, and work requests from a Jobber Client Hub. Read-only, uses a local browser bridge to access the customer portal.773MIT
Related MCP Connectors
Securely access and manage FHIR healthcare data stored in Medplum.
Read your Savee saves, boards and home feed, and search its public library. Read-only.
Access the Notra API for managing posts, brand identities, integrations, and schedules.
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/chrischall/simplepractice-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server