← liteehr.com

INDIVIDUAL MCP TOOL

list_patient_records

List EHR records accessible to the authenticated API key.

liteehr.comnone authenticationAvailability not checked

Input schema

{}

Risk classification

Inferred read-only · medium confidence · heuristic, not a guarantee.

  • A tool name, description or schema mentions credentials.

Parent endpoint

liteehr.com

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.liteehr-com]
url = "https://liteehr.com/api/ehr/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "liteehr-com": {
      "type": "http",
      "url": "https://liteehr.com/api/ehr/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: liteehr-com
Remote MCP URL: https://liteehr.com/api/ehr/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "liteehr-com": {
      "url": "https://liteehr.com/api/ehr/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "liteehr-com": {
      "type": "http",
      "url": "https://liteehr.com/api/ehr/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "liteehr-com",
  "transport": "streamable-http",
  "url": "https://liteehr.com/api/ehr/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

Related tools

  • search_providers — Search the LiteEHR global physician directory across both the US NPI registry (2.4M providers) and international registries (UK, Australia, Ireland, New Zealand, Canada).
  • find_hospice_doctors — Find hospice-capable or palliative care physicians in a given country or US state.
  • list_registry_coverage — List all countries and registries in LiteEHR's physician directory with current record counts, ingestion status, and last update timestamps.
  • get_provider_details — Retrieve the full record for a specific provider.
  • create_share_token — Generate a consent-gated share token so the patient can share their EHR with a specific provider.
  • revoke_share — Revoke a previously created share token.
  • fetch_shared_record — Retrieve a patient record using a share token provided by the patient.
  • list_shares — List all share tokens the patient has created — who has access, whether it's anonymous or full, when it expires, and how many times it's been accessed.