Skip to main content
Glama

HIPAA Guardian MCP Server

by eludden35
build.js•1.54 kB
#!/usr/bin/env node import { execSync } from 'child_process'; import * as fs from 'fs'; import * as path from 'path'; console.log('šŸ”Ø Building HIPAA Compliance Guardian MCP Server for Smithery...'); try { // Clean dist directory if (fs.existsSync('./dist')) { fs.rmSync('./dist', { recursive: true, force: true }); } // Compile TypeScript console.log('šŸ“ Compiling TypeScript...'); execSync('npx tsc', { stdio: 'inherit' }); // Copy hipaa-content.json to dist console.log('šŸ“‹ Copying HIPAA content...'); fs.copyFileSync('./hipaa-content.json', './dist/hipaa-content.json'); // Copy package.json to dist console.log('šŸ“¦ Copying package.json...'); const packageJson = JSON.parse(fs.readFileSync('./package.json', 'utf-8')); const distPackageJson = { name: packageJson.name, version: packageJson.version, type: 'module', main: 'server.js', dependencies: { '@modelcontextprotocol/sdk': packageJson.dependencies['@modelcontextprotocol/sdk'], 'zod': packageJson.dependencies['zod'] } }; fs.writeFileSync('./dist/package.json', JSON.stringify(distPackageJson, null, 2)); // Copy smithery.yaml to dist console.log('āš™ļø Copying smithery.yaml...'); fs.copyFileSync('./smithery.yaml', './dist/smithery.yaml'); console.log('āœ… Build completed successfully!'); console.log('šŸ“ Output directory: ./dist'); console.log('šŸš€ Ready for Smithery deployment'); } catch (error) { console.error('āŒ Build failed:', error); process.exit(1); }

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