getComplianceRoadmap
Generate a customized HIPAA compliance roadmap for healthcare applications by identifying PHI handling, encryption requirements, and business associate rules to meet Security and Privacy Rule standards.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| schema | Yes |
Implementation Reference
- server.ts:53-67 (handler)Full implementation of the getComplianceRoadmap tool: registered via server.tool() with no-input schema, handler returns the compliance roadmap text from the loaded hipaaData JSON knowledge base.server.tool( 'getComplianceRoadmap', { description: 'Returns a step-by-step roadmap for an organization to become HIPAA compliant, including administrative and policy requirements.', schema: z.object({}), }, async () => { return { content: [{ type: 'text', text: hipaaData['becoming_hipaa_compliant'] }] }; } );
- server.ts:435-435 (registration)Console log that lists getComplianceRoadmap among the available tools.console.log(' - getComplianceRoadmap');