Connects to Epic MyChart patient portals: interactive login, list and download your own test results
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag β we're steadily working through the catalog.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
An MCP (Model Context Protocol) server that connects to any Epic MyChart patient portal to log in, list your test results, and download them as PDFs β so an AI assistant can help you understand your own lab work.
Epic offers no simple public login API (the official FHIR route requires per-organization app registration), so this server drives the MyChart website with Playwright:
/app/test-results) first, then classic routes, with permissive selectors.| Tool | Purpose |
|---|---|
mychart_set_provider | Set your health system's MyChart URL (one-time). Paste any URL from their MyChart site. |
mychart_login | Opens a visible browser window; you sign in + complete MFA there. |
mychart_session_status | Check provider config + whether the saved session is still valid. |
mychart_list_test_results | List ALL test results (auto-expands "Show more"), with ids r1, r2, .... |
mychart_get_test_result | Full readable content of one result (values, ranges, comments). |
mychart_download_test_result | Save a result as PDF to ~/.mychart-mcp/downloads. |
mychart_screenshot | Debug: full-page PNG of what the automation browser sees. |
mychart_close_browser | Close the browser process (session stays saved on disk). |
Or from source:
(Or point command at node with args: ["<path>/dist/index.js"] for a source checkout.) Restart your MCP client after config changes.
| Variable | Purpose |
|---|---|
MYCHART_URL | Default provider URL (alternative to mychart_set_provider). |
MYCHART_USERNAME / MYCHART_PASSWORD | If set on the server process, the login form is pre-filled (MFA is still completed by you in the window). Optional β typing in the window is the default and safest. |
mychart_set_provider with your portal URL (e.g. https://mychart.example-health.org/MyChart)mychart_login β sign in + MFA in the window that opens (check "Remember this device")mychart_list_test_results β returns r1, r2, ...mychart_get_test_result r1 or mychart_download_test_result r1Everything lives in ~/.mychart-mcp/ β keep it out of synced folders (the Chromium profile does not tolerate file sync):
config.json β provider URLbrowser-profile/ β persistent Chromium profilestorage-state.json β exported session cookies (replayed on each launch)results-cache.json β id β result-URL map from the last list calldownloads/ β PDFs and screenshotsmychart_screenshot to see the rendered page; selectors may need a tweak for your provider. Some systems host MyChart on non-obvious domains (e.g. secure.<org>.org rather than mychart.<org>.org) β paste the URL straight from your browser.page.pdf), which is version-independent, rather than hunting for per-version "Download" buttons.mychart_login again.login-helper.mjs, run-direct.mjs, and run-batch.mjs drive the built dist/ code directly β handy for re-login or batch fetching without an MCP client in the loop.MIT
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/mychart)<a href="https://allmcps.com/mcp/mychart"><img src="https://allmcps.com/api/badge/mychart?style=directory" alt="Mychart on AllMCPs" /></a>