MCP HuliHealth
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@MCP HuliHealthList all patients with appointments today"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
MCP HuliHealth
A production-ready Model Context Protocol (MCP) server for HuliHealth. This CLI allows n8n or other automation tools to invoke HuliHealth APIs through a standard MCP interface.
🚀 Features
Modular tool-per-file architecture in
src/tools/OpenAPI-based schemas for type safety
STDIO or SSE modes for integration flexibility
Designed for n8n and LLM agents
Related MCP server: n8n-MCP
📂 Project Structure
src/ TypeScript source
openapi.json Reference Huli API specification
PROMT.md Architecture notes🛠️ Setup
Install dependencies
npm installConfigure environment variables Copy
.env.exampleto.envand set your credentials.
Running the CLI
Use npx to start the server. Without arguments it runs in STDIO mode. Add --sse or set PORT to start an HTTP SSE server.
npx hulihealth-mcp-dacs # STDIO mode
npx hulihealth-mcp-dacs --sse # SSE mode on port $PORT or 3000Generating new tools
Create new MCP tools with the mcp-gen-tool helper:
npm run mcp-gen-tool create-tool --name=<toolName>The command scaffolds src/tools/<toolName>.ts with a basic template. After
editing the file remember to register the tool in src/mcp/toolRegistry.ts.
n8n Integration
Example configuration to run the MCP from an n8n workflow:
{
"mcpServers": {
"hulihealth-mcp": {
"command": "npx",
"args": ["-y", "hulihealth-mcp-dacs"],
"env": {
"HULIHEALTH_API_KEY": "YOUR-API-KEY",
"HULI_ORG_ID": "YOUR-ORG-ID"
}
}
}
}🔑 Environment Variables
HULIHEALTH_API_KEY– your API key (required)HULI_ORG_ID– your organization ID (required)PORT– optional port for SSE mode
Created by dacsdev.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityDmaintenanceAn MCP server that provides healthcare tools for interacting with FHIR data and medical resources on EMRs like Cerner and Epic1MIT
- Alicense-qualityDmaintenanceAn MCP server that provides AI assistants with access to documentation, schemas, and operations for over 535 n8n workflow automation nodes. It enables models to understand, create, and manage n8n workflows through natural language by connecting to the n8n API.160,284MIT
- AlicenseAqualityAmaintenanceMCP server for managing n8n workflows through AI assistants. Supports workflow CRUD operations, synchronization, inspection, and execution support for automation-focused workflows.141212MIT
- Alicense-qualityDmaintenanceMCP server for n8n workflow automation, enabling management of workflows, executions, credentials, tags, users, and webhooks via an MCP-compatible client.MIT
Related MCP Connectors
Self-hosted MCP gateway: turn any API, database or MCP server into AI connectors — no code.
Hosted MCP server exposing US hospital procedure cost data to AI assistants
Markdown-first MCP server for Notion API with 8 composite tools and 39 actions.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/dacsdev/mcp-hulihealth'
If you have feedback or need assistance with the MCP directory API, please join our Discord server