getMobileSecurityControls
Identify required mobile security controls for HIPAA compliance in healthcare applications, including encryption standards and data protection measures.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| schema | Yes |
Implementation Reference
- server.ts:119-126 (handler)The handler function that executes the tool logic. It returns a text content block containing the mobile and wearable applications security controls from the loaded HIPAA knowledge base JSON.async () => { return { content: [{ type: 'text', text: hipaaData['mobile_and_wearable_applications'] }] }; }
- server.ts:115-118 (schema)The input schema (empty object, no parameters) and description for the tool.{ description: 'Returns a checklist of specific security controls for mobile and wearable apps, including data storage, transmission, and notifications.', schema: z.object({}), },
- server.ts:113-127 (registration)The registration of the 'getMobileSecurityControls' tool on the MCP server, including schema, description, and inline handler function.server.tool( 'getMobileSecurityControls', { description: 'Returns a checklist of specific security controls for mobile and wearable apps, including data storage, transmission, and notifications.', schema: z.object({}), }, async () => { return { content: [{ type: 'text', text: hipaaData['mobile_and_wearable_applications'] }] }; } );