Skip to main content
Glama
eludden35

HIPAA Guardian MCP Server

getVendorVettingChecklist

Generate a HIPAA compliance checklist for third-party vendors to ensure they meet security and privacy requirements before integration.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
schemaYes

Implementation Reference

  • The asynchronous handler function for the 'getVendorVettingChecklist' tool. It accepts a 'vendorName' parameter and returns a structured response containing a markdown-formatted checklist for vetting third-party vendors for HIPAA compliance.
        async ({ vendorName }) => {
            return {
                content: [{
                    type: 'text',
                    text: `
    # Business Associate Vetting Checklist for ${vendorName}
    
    Before integrating with ${vendorName} or any vendor that will handle PHI, you must perform due diligence.
    
    1.  **Will They Sign a BAA?**: This is the first and most important question. If the answer is no, you cannot use them for PHI. Period.
    2.  **Review Their Compliance Documentation:** Does ${vendorName} have a public-facing trust center or compliance page detailing their HIPAA-eligible services?
    3.  **Check for Independent Audits:** Do they have a SOC 2 Type 2 report or a HITRUST certification? Request and review these documents.
    4.  **Shared Responsibility Model:** Does ${vendorName} clearly document what they are responsible for versus what you are responsible for in maintaining compliance?
    5.  **Data Residency and Control:** Can you control where the data is stored geographically?
    6.  **Breach Notification:** What is their process and timeline for notifying you in the event of a breach on their end? This must be outlined in the BAA.
    7.  **Data Disposal:** What is their policy for securely deleting your data when you terminate your service with them?
    `
                }]
            };
        }
  • The Zod schema defining the input parameters for the tool: an object with a required 'vendorName' string.
    schema: z.object({
        vendorName: z.string().describe("The name of the third-party service being considered, e.g., 'Twilio', 'Google Cloud', 'Zendesk'"),
    }),
  • server.ts:263-291 (registration)
    The registration of the 'getVendorVettingChecklist' tool using server.tool(), including description, schema, and handler function.
    server.tool(
        'getVendorVettingChecklist',
        {
            description: 'Provides a checklist for evaluating a third-party vendor (Business Associate) to ensure they meet HIPAA compliance standards before integration.',
            schema: z.object({
                vendorName: z.string().describe("The name of the third-party service being considered, e.g., 'Twilio', 'Google Cloud', 'Zendesk'"),
            }),
        },
        async ({ vendorName }) => {
            return {
                content: [{
                    type: 'text',
                    text: `
    # Business Associate Vetting Checklist for ${vendorName}
    
    Before integrating with ${vendorName} or any vendor that will handle PHI, you must perform due diligence.
    
    1.  **Will They Sign a BAA?**: This is the first and most important question. If the answer is no, you cannot use them for PHI. Period.
    2.  **Review Their Compliance Documentation:** Does ${vendorName} have a public-facing trust center or compliance page detailing their HIPAA-eligible services?
    3.  **Check for Independent Audits:** Do they have a SOC 2 Type 2 report or a HITRUST certification? Request and review these documents.
    4.  **Shared Responsibility Model:** Does ${vendorName} clearly document what they are responsible for versus what you are responsible for in maintaining compliance?
    5.  **Data Residency and Control:** Can you control where the data is stored geographically?
    6.  **Breach Notification:** What is their process and timeline for notifying you in the event of a breach on their end? This must be outlined in the BAA.
    7.  **Data Disposal:** What is their policy for securely deleting your data when you terminate your service with them?
    `
                }]
            };
        }
    );
Behavior1/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Tool has no description.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness1/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Tool has no description.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness1/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Tool has no description.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters1/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Tool has no description.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose1/5

Does the description clearly state what the tool does and how it differs from similar tools?

Tool has no description.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines1/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Tool has no description.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/eludden35/hipaa-guardian-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server