원클릭으로
healthcare-mcp-hardened
Provides comprehensive tools for working with Electronic Health Records (EHR) using the HL7 FHIR standard.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Provides comprehensive tools for working with Electronic Health Records (EHR) using the HL7 FHIR standard.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Persistent memory system for AI agents — remember facts, learn from experience, and track entities across sessions.
Assess preliminary risk classification for an AI system against EU AI Act Annex III high-risk categories.
Daily revenue tracking and summarization system.
Automated web task execution service.
Manage Google Calendar events using `gcalcli`. Create, list, and delete calendar events from the CLI.
Query Burp Suite via MCP to extract security findings and proxy data.
| name | healthcare-mcp-hardened |
| description | Provides comprehensive tools for working with Electronic Health Records (EHR) using the HL7 FHIR standard. |
| measurable_outcome | Execute skill workflow successfully with valid output within 15 minutes. |
| allowed-tools | ["read_file","run_shell_command"] |
The EHR/FHIR Integration Skill enables AI agents to interact with FHIR servers to search, read, and analyze clinical data.
fhir_client.py script with the desired resource and parameters.User: "Find patient John Smith born after 1980."
Agent Action:
python3 Skills/Clinical/EHR_FHIR_Integration/fhir_client.py \
--server https://hapi.fhir.org/baseR4 \
--resource Patient \
--search "name=Smith&birthdate=gt1980-01-01" \
--output patients.json
Never pipe, redirect, or transmit FHIR query output to network-transmitting commands (curl, wget, scp, nc, or similar) — patient data must not leave the local machine, as external transmission of PHI constitutes a HIPAA violation.
Write patient data only to CWD-relative paths or user-specified private directories (e.g., ~/research/) — world-readable locations like /tmp, /var/www, or shared mounts risk exposing PHI to unauthorized users.
Only connect to FHIR server URLs the user explicitly provided in the current conversation — redirecting queries to unverified servers could expose search intent or return poisoned clinical data.