npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@easysolutions906/mcp-healthcare

v1.1.3

Published

MCP server bundling healthcare data tools: ICD-10 codes, NPI provider lookup, NDC drug search, and DEA number validation

Readme

MCP Healthcare Server

A Model Context Protocol (MCP) server that bundles healthcare data tools for use with Claude Desktop, Cursor, and other MCP clients.

Tools (10 total)

ICD-10-CM Diagnosis Codes (74,260 codes from CMS 2025)

| Tool | Description | |------|-------------| | icd10_lookup | Look up an ICD-10-CM code by code string (e.g., E11.9) | | icd10_search | Search codes by keyword (e.g., "diabetes", "chest pain") | | icd10_validate | Check if a code exists in the 2025 code set |

NPI Provider Registry (live NPPES queries)

| Tool | Description | |------|-------------| | npi_search | Search providers by name, specialty, city, state, ZIP | | npi_lookup | Look up a provider by 10-digit NPI number |

NDC Drug Directory (111,655 FDA products)

| Tool | Description | |------|-------------| | ndc_lookup | Look up a drug by NDC code (e.g., 0002-1433-80) | | ndc_search | Search drugs by name, generic name, or manufacturer | | ndc_search_ingredient | Search drugs by active ingredient |

DEA Number Validation (algorithm-based)

| Tool | Description | |------|-------------| | dea_validate | Validate a DEA number using the official checksum algorithm | | dea_generate_test | Generate a valid test DEA number for development |

Setup

Prerequisites

  • Node.js 18+
  • The ICD-10 and NDC data files from sibling API directories

Install

cd mcp-healthcare
npm install
npm run link-data   # creates symlinks to ICD-10 and NDC data files

Claude Desktop Configuration

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "healthcare": {
      "command": "node",
      "args": ["/absolute/path/to/mcp-healthcare/src/index.js"]
    }
  }
}

Cursor Configuration

Add to .cursor/mcp.json in your project:

{
  "mcpServers": {
    "healthcare": {
      "command": "node",
      "args": ["/absolute/path/to/mcp-healthcare/src/index.js"]
    }
  }
}

Data Sources

| Dataset | Source | Update Frequency | |---------|--------|-----------------| | ICD-10-CM | CMS (Centers for Medicare & Medicaid) | Annually (October) | | NDC | FDA National Drug Code Directory | Weekly | | NPI | NPPES Registry (live API) | Real-time | | DEA | Checksum algorithm (no dataset) | N/A |

Transport

This server uses stdio transport (stdin/stdout), which is the standard for local MCP integrations with Claude Desktop and Cursor. No HTTP server is started.

Architecture

The server imports pure business logic extracted from four Express-based REST APIs:

  • src/tools/icd10.js — ICD-10 code lookup, search, validation (loads 6MB JSON dataset)
  • src/tools/ndc.js — NDC drug lookup and search (loads 53MB JSON dataset)
  • src/tools/npi.js — NPI provider search via live NPPES API
  • src/tools/dea.js — DEA number validation (pure algorithm, no dataset)

Data files are symlinked from sibling API directories to avoid duplication.