dingdawg-healthcare-agent
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., "@dingdawg-healthcare-agentperform a patient intake for John Doe with symptoms of fever"
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.
dingdawg-healthcare-agent
Breakthrough clinical workflow bottlenecks. AI healthcare assistance that respects HIPAA from day one.
HIPAA-aware AI for patient intake, clinical summaries, compliance checking, and appointment scheduling. Free tier runs locally with zero data transmission. Paid tier provides LLM-powered clinical analysis via HIPAA-compliant API. Every action is governed and receipted.
For AI Assistants
This MCP server returns structured JSON for seamless integration:
ICD-10 and CPT code references in clinical summaries
HIPAA compliance scores with specific safeguard gap identification
Governance receipt on every call (audit-ready)
Chain-ready:
patient_intake->hipaa_checkto verify compliance ->clinical_summaryfor documentation ->appointment_schedulerfor follow-up
Composable with any MCP client: Claude Code, Cursor, VS Code, ChatGPT Desktop, Windsurf.
Related MCP server: MCP Healthcare System
Install
npx dingdawg-healthcare-agentClaude Code
claude mcp add healthcare -- npx dingdawg-healthcare-agentCursor
Add to .cursor/mcp.json:
{"mcpServers": {"healthcare": {"command": "npx", "args": ["dingdawg-healthcare-agent"], "env": {"DINGDAWG_API_KEY": "your-key"}}}}Full Stack (all 13 agents)
npx dingdawg-setupTools
Tool | Free Tier | Paid Tier |
| 10/day, structured form generation | Unlimited, AI-powered intake with pre-population |
| 5/day, basic summary from notes | Unlimited, LLM-powered with ICD-10/CPT coding |
| 10/day, checklist-based compliance | Unlimited, deep HIPAA gap analysis with remediation |
| 10/day, basic scheduling | Unlimited, AI-optimized scheduling with conflict detection |
Pricing
Free: 10 intakes/day, local processing (no data leaves your machine)
Pro: $49/mo, 100 calls/day, AI-powered clinical analysis
Pay-as-you-go: $0.25/call, no commitment
Get API key: https://dingdawg.com/developers
Governed
Every call is receipted and auditable. HIPAA checks reference specific administrative, physical, and technical safeguards (45 CFR Part 164). Clinical summaries include disclaimer that content is for informational purposes and does not constitute medical advice. All PHI processing on paid tier uses HIPAA-compliant infrastructure.
Support
Available Tools
4 toolsappointment_schedulerCRead-only
AI-powered appointment scheduling with conflict detection and optimization. Requires DINGDAWG_API_KEY.
| Name | Required | Description | Default |
|---|---|---|---|
| date | No | Appointment date (YYYY-MM-DD) | |
| time | No | Appointment time (HH:MM) | |
| action | Yes | Action to perform | |
| patient_name | No | Patient name | |
| appointment_id | No | Appointment ID (for cancel) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The annotations declare readOnlyHint=true, but the description says 'appointment scheduling' and the schema includes schedule and cancel actions, implying mutation. This directly contradicts the annotation, making the behavioral transparency score 1.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise, with two short sentences and no waste. However, 'AI-powered' is vague filler and the structure doesn't front-load key details like the tool's multiple actions.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Despite full schema descriptions, the tool description omits the list and cancel actions and fails to explain behavior around API key requirements or response format. The contradiction with annotations further reduces completeness.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, with each parameter having a clear description. The tool description adds no semantic meaning beyond that, so baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool schedules appointments, which is a specific verb and resource. It does not explicitly differentiate from sibling tools but the name and description sufficiently convey its core function.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description requires a DINGDAWG_API_KEY but provides no context on when to use this tool versus alternatives like patient_intake or hipaa_check. No exclusions or situational guidance are given.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
clinical_summaryARead-only
Summarize clinical notes into structured format. Extracts chief complaint, HPI, assessment, plan. Requires DINGDAWG_API_KEY for LLM-powered summarization.
| Name | Required | Description | Default |
|---|---|---|---|
| format | No | Output format | |
| clinical_notes | Yes | Free-text clinical notes to summarize |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond the readOnlyHint annotation, which indicates a safe read operation, the description discloses an important external dependency: the DINGDAWG_API_KEY for LLM-powered summarization. It also hints at the token/cost implications of using an LLM, which is valuable behavioral context that annotations do not provide.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences with no wasted words. The first sentence states the action and the second provides the key prerequisite and output components, making it easy to parse quickly.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With no output schema, the description carries the burden of explaining the return value. It lists the extracted fields, which gives a good sense of the output structure. However, it doesn't clarify the difference between the 'soap', 'structured', and 'brief' formats, and doesn't mention potential errors if the API key is missing, leaving slight gaps for such a complex operation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema already covers both parameters with descriptions (100% coverage), so baseline is 3. The description adds value by explaining that the output extracts chief complaint, HPI, assessment, and plan, which clarifies what the 'format' parameter's 'structured' option entails and what the tool does with the clinical_notes parameter.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description begins with a specific verb ('Summarize') and resource ('clinical notes'), and clearly states the goal ('into structured format'). It further specifies the key extracted elements (chief complaint, HPI, assessment, plan), which distinguishes this tool from siblings like patient_intake or appointment_scheduler.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context for when to use this tool (to summarize clinical notes) and mentions a critical prerequisite (DINGDAWG_API_KEY). It does not explicitly name alternatives or state when not to use it, but the sibling tools are sufficiently different in purpose that no exclusions are necessary.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
hipaa_checkARead-only
Free HIPAA compliance quick check for processes and systems. Returns basic compliance gaps locally. Deep LLM-powered audit with API key.
| Name | Required | Description | Default |
|---|---|---|---|
| data_types | No | Types of data handled (PHI, ePHI, etc.) | |
| process_description | Yes | Describe the process or system to assess for HIPAA compliance |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond the readOnlyHint annotation, the description discloses that the basic check runs locally and that a deeper audit requires an API key. This adds meaningful behavioral context without contradicting the annotation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two concise sentences front-load the tool's purpose and distinguish between free and API-key modes. No filler or redundant content.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description explains the return value at a high level and mentions the two modes, but lacks detail on how the API key is supplied given no such parameter exists in the schema. With no output schema, more explicit return or invocation details would improve completeness.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema documents both parameters with full coverage, so the description does not need to add parameter syntax. The description's mention of 'processes and systems' loosely maps to process_description but adds little beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool performs a HIPAA compliance quick check for processes and systems and returns basic compliance gaps. It also differentiates from the clinical/patient-focused sibling tools by its compliance domain.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It provides context for when to use the free quick check versus the deeper LLM-powered audit with an API key. No explicit exclusions or named alternatives, but the usage context is clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
patient_intakeARead-only
Free AI patient intake form with triage priority and symptom analysis. Returns structured intake locally. Deep LLM-powered ICD-10 coding and clinical reasoning with API key.
| Name | Required | Description | Default |
|---|---|---|---|
| age | No | Patient age | |
| gender | No | Patient gender | |
| symptoms | Yes | Patient symptoms description | |
| medical_history | No | Relevant medical history |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations include readOnlyHint:true, and the description adds that it returns structured intake locally and requires an API key for deep ICD-10 coding and clinical reasoning. This provides useful extra behavioral context beyond the annotation, such as local processing and key requirement.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description consists of two concise, front-loaded sentences. Every phrase adds value, including the free aspect, local processing, and deep LLM features, with no redundant words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no output schema, the description partially compensates by listing triage priority, symptom analysis, and ICD-10 coding as outputs. It lacks details on input prerequisites or error handling, but is reasonably complete for a tool of this simplicity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the baseline is 3. The description mentions symptoms for analysis but doesn't add meaning beyond the schema's parameter descriptions, such as age, gender, or medical_history specifics.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly identifies the tool as an AI patient intake form performing triage priority and symptom analysis, with additional ICD-10 coding. This specific verb+resource combination distinguishes it from sibling tools like clinical_summary and appointment_scheduler.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies use for patient intake and symptom analysis, setting clear context. However, it does not explicitly state when not to use or mention alternatives, so it falls short of full usage guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
4 tool updates
v2.0.7- First observed
appointment_scheduler - First observed
clinical_summary - First observed
hipaa_check - First observed
patient_intake
TDQS
Each tool targets a distinct healthcare function—patient intake, clinical summarization, HIPAA compliance, and scheduling. There is no overlap in purpose or output, making misselection unlikely.
All tool names follow a consistent <domain>_<function> snake_case pattern (e.g., patient_intake, hipaa_check). The suffix types vary between nouns and verbs, but the overall naming is predictable and uniform.
Four tools is a reasonable, focused set for a healthcare agent, each earning its place in the workflow. The count is slightly lean but still well-scoped.
The set covers intake, summarization, compliance, and scheduling, but lacks basic CRUD operations for patients or appointments (e.g., no get, update, or delete). This leaves notable gaps for ongoing management.
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 Connectors
Hosted MCP for denial, prior auth, reimbursement, workflow validation, batch scoring, and feedback.
An AI concierge that turns static forms into adaptive AI conversations. From any MCP client.
HealthGuard - 12-tool health/medical AI safety MCP: PII redaction, HIPAA, GDPR Art.9.
Hosted MCP server for the Healthie EHR & telehealth API: patients, appointments, charting, tasks.
Related MCP Servers
- AlicenseBqualityNot gradedmaintenanceMCP Server for Google Cloud Healthcare API enables Agentic AI for a variety of FHIR-based digital health solutions, from smarter clinical workflows for Health Systems to Pre-Auth frameworks for Payers!158-
- AlicenseNot gradedqualityNot gradedmaintenanceA production-grade MCP server that enables AI assistants to securely manage healthcare data through clinical tools for patient vitals, lab results, and medication ordering. It prioritizes security and compliance with features like HIPAA-ready audit logging, PII redaction, and role-based access control.-
- AlicenseAqualityDmaintenanceEnables healthcare AI interactions via MCP protocol with built-in EU AI Act compliance. Provides quick installation, well-documented API, and enterprise support.4MIT
- AlicenseNot gradedqualityDmaintenanceEnables Claude and other AI assistants to trigger HIPAA-compliant patient task management workflows through natural language.1MIT
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/dingdawg/dingdawg-healthcare-agent'
If you have feedback or need assistance with the MCP directory API, please join our Discord server