IntakeQ/PracticeQ MCP connector with HIPAA Β§164.312(b) audit logging on every PHI read/write
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
Inspect callable tools, capabilities, and parameters exposed to AI agents by IntakeQ MCP.
set_api_keyStore IntakeQ API key
auth_statusVerify API connection
clear_api_keyRemove stored key
list_clientsSearch/list clients
get_clientSingle client profile
list_practitionersAll practitioners in the account
Built by Oktopeak β AI transformation & automation for healthcare practices
Digital transformation for healthcare and legal businesses. We build AI integrations, workflow automation, and custom software your practice owns outright β including this connector. β Book a 30-min call
IntakeQ/PracticeQ MCP connector for Claude. Gives Claude access to your IntakeQ scheduling, intake forms, treatment notes, invoices, and client records through the Model Context Protocol.
Every PHI read and write is logged locally in compliance with HIPAA Β§164.312(b).
Two things must be in place before PHI flows through this connector:
IntakeQ BAA β IntakeQ/PracticeQ includes a Business Associate Agreement. Sign it in your IntakeQ account (Settings β HIPAA) before going live. This is one of IntakeQ's strengths: the BAA is self-serve and included in all plans.
Anthropic enterprise tier with ZDR β With hosted Claude + MCP, PHI goes to Anthropic for inference. The defensible claim is training-disabled + Zero Data Retention under enterprise + BAA β not data locality. "Access" (the model processed it) is the exposure, not just retention. Sign up for Anthropic enterprise and request a BAA before using this with real patients.
What this connector does:
~/.intakeq-mcp/audit.log (HIPAA Β§164.312(b))Generate your API key in IntakeQ: Settings β Integrations β Developer API
Then tell Claude:
"Set my IntakeQ API key to [your-key]"
Or use the MCP tool directly: set_api_key
| Tool | Description | R/W |
|---|---|---|
set_api_key | Store IntakeQ API key | W |
auth_status | Verify API connection | R |
clear_api_key | Remove stored key | W |
list_clients | Search/list clients | R |
get_client | Single client profile | R |
list_practitioners | All practitioners in the account | R |
list_services | Services configured in the account | R |
list_locations | Locations configured in the account | R |
list_appointments | Appointments by client/date | R |
get_appointment | Single appointment | R |
create_appointment | Book appointment | W |
update_appointment | Reschedule/update | W |
list_intake_forms | Submitted intake forms | R |
get_form | Full form with answers | R |
list_questionnaire_templates | Available form templates | R |
send_intake_form | Send form to client | W |
list_notes | Treatment notes (read-only in IntakeQ API) | R |
get_note | Full note | R |
list_invoices | Client invoices | R |
get_invoice | Single invoice | R |
list_files | Client file metadata | R |
audit_export | Export HIPAA audit trail | R |
Tip: call
list_practitioners,list_services, andlist_locationsbeforecreate_appointmentto obtain valid IDs required by that tool.
| Resource URI | Description |
|---|---|
intakeq://compliance-notice | HIPAA compliance notice β BAA requirements and what the connector logs |
intakeq://auth-status | Live authentication status (JSON) |
Every PHI read and write is appended to ~/.intakeq-mcp/audit.log (JSONL format).
Each entry records: timestamp, session ID, machine IP, tool name, arguments (sanitized),
outcome, practitioner ID, client ID, and result count.
Export the audit log at any time: ask Claude to run audit_export.
Audit logging is fail-open. If the log file can't be written (disk full, permissions),
the tool call still completes rather than blocking clinical work β the failure is written
to stderr with an [audit-log-failure] prefix so it can be monitored/alerted on. If you
need a hard guarantee that PHI access is never left unlogged, monitor process stderr for
that prefix in your deployment.
The server runs in stdio mode by default. To run as an HTTP server (e.g. for multi-user or remote deployments):
The MCP endpoint is at /mcp, gated by a required Bearer token (MCP_API_KEY). The
server refuses to start in HTTP mode without MCP_API_KEY set, since an unauthenticated
endpoint would expose every PHI tool to anyone who can reach the port. To explicitly opt
into an unauthenticated endpoint for local development only, set MCP_ALLOW_NO_AUTH=true β
never do this with real patient data.
HTTP transport does not terminate TLS itself. Run it behind a reverse proxy (nginx, Caddy, your cloud provider's load balancer, etc.) that terminates HTTPS β otherwise the Bearer token and all PHI in transit are sent in plaintext on the network.
Each HTTP session maintains its own API key in memory β the set_api_key tool scopes the key to the session and never writes it to the shared disk file. Sessions are garbage-collected after 24 hours.
Health check: GET /health β { "ok": true, "sessions": <count> }
| Variable | Default | Description |
|---|---|---|
INTAKEQ_API_KEY | β | Fallback API key for CI / headless use (prefer the set_api_key tool) |
INTAKEQ_API_BASE | https://intakeq.com/api/v1 | Override the IntakeQ API base URL |
TRANSPORT | stdio | Transport mode: stdio or http |
PORT | 3000 | HTTP server port (HTTP mode only) |
MCP_BASE_URL | http://127.0.0.1:3000 | Base URL printed in HTTP startup logs |
MCP_API_KEY | β | Bearer token to gate the HTTP /mcp endpoint. Required in HTTP mode unless MCP_ALLOW_NO_AUTH=true |
MCP_ALLOW_NO_AUTH | β | Set to true to explicitly allow HTTP mode without MCP_API_KEY (local dev only) |
IntakeQ enforces ~10 requests/minute. The connector retries automatically on HTTP 429 (up to 3 attempts, with back-off delays of 10 s / 20 s / 30 s). After 3 failures the error is surfaced rather than hanging indefinitely.
Same architecture (encrypted key storage, audit logging, rate limiting), different platforms:
@oktopeak/clio-mcp)@oktopeak/mycase-mcp)@oktopeak/filevine-mcp)This connector is free, MIT licensed, and maintained by Oktopeak. It always will be β we don't take donations. If it saved you time, the things that actually help:
Oktopeak β digital transformation for healthcare and law firms.
We're a 7-person in-house product team building AI solutions for regulated industries: AI integrations, workflow automation, and custom software our clients own outright. We maintain four open-source MCP connectors β Clio, MyCase, Filevine, and IntakeQ β and deploy them inside real practices with scoped credentials, audit logs, and workflows built around how your team actually works.
Factual signals from GitHub, npm, and our automated checks β not a rating.
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/intakeq-mcp)<a href="https://allmcps.com/mcp/intakeq-mcp"><img src="https://allmcps.com/api/badge/intakeq-mcp?style=directory" alt="IntakeQ MCP on AllMCPs" /></a>