npi-providers-mcp-server
Click on "Deploy 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., "@npi-providers-mcp-serverfind primary care doctors in Austin, TX"
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.
Public Hosted Server: https://npi-providers.caseyjhand.com/mcp
Overview
US healthcare provider directory over the NPPES NPI Registry, with plain-language specialty terms resolved offline against a bundled NUCC taxonomy. Search providers by name, organization, location, and specialty; decode NPIs into professional-practice provider records; and resolve or browse the NUCC taxonomy directly. Runs as a stdio process, a local Streamable HTTP server, or the public hosted endpoint above.
Tools
Tool | Description |
| Search the NPPES registry by name, organization, location, provider type, and specialty. Plain-language specialties resolve through the bundled NUCC taxonomy before searching. |
| Fetch the NPPES professional-practice record for up to 10 NPIs — taxonomies, practice addresses, credentials, identifiers, endpoints, and status. Only LOCATION address rows are kept for individual providers. |
| Resolve, fetch, or browse the NUCC Healthcare Provider Taxonomy — fully offline. |
Resources
Resource | Description |
| A single provider's decoded record by NPI — the resource twin of |
| A single NUCC taxonomy entry by code — the resource twin of |
All resource data is also reachable via tools; the resources are convenience twins for resource-capable clients.
Related MCP server: npi-verify
Capability reference
npi_search_providers tool
Search by
name_searchshortcut, explicitfirst_name/last_name,organization_name,city/state/postal_code, andprovider_type(individual/organization); at least one criterion is required and the registry rejects state-only searches. Person names search individuals andorganization_namesearches organizations, so mixing the two sides (directly or throughprovider_type) fails before any registry requestPlain-language
specialtyresolves through the bundled NUCC taxonomy to the registry's exact description before searching, echoed back viaresolvedTaxonomies/appliedTaxonomyDescription; inactive NUCC codes are never resolved.taxonomy_descriptionis an escape hatch for an already-known exact description (mutually exclusive withspecialty)Trailing-wildcard (
*) matching on names, organization, andcityrequires at least 2 leading characters;postal_codetakes 5 or 9 digits, or a 2–9 digit prefix ending in*(98*,981*)Name searches also match former and other names, and the registry sorts by current name; a row matched through one names it in
matchedOtherName(an exactfirst_namealone never marks a row, since the registry also matches first-name variants)Each row's
city/state/postalCodeis the primary practice location. A location search matches practice addresses only, never mailing addresses: a row is returned only when the primary practice location or another practice location matches every requested location field (any other row the registry returns is filtered out, with anoticecounting it), and a row kept on another practice location names it inmatchedLocationlimit1–200 (default 10),skip0–1000; the registry never reports a true match total, and the response discloses page-size-not-total viatruncated/notice. A full page names the next page innextPage; one search reaches only its first 1200 matches, so the terminal window (skip1000,limit200) instead returnscontinuationPostalCodes—postal_codeprefixes to re-run the same search with, deduplicating by NPI. That split cannot go below a 5-digit ZIP or reach practice addresses outside the US, and the notice says soTyped error reasons:
no_search_criteria,conflicting_specialty,mixed_provider_criteria,unresolved_specialty,invalid_search_field
npi_get_provider tool
Accepts a single NPI or up to 10; each must be exactly 10 digits, and each is checked against its NPI check digit before any API call
Returns every taxonomy (with primary flag, license number and state), practice addresses with phone and fax, credential, sex, sole-proprietor flag, enumeration and last-updated dates, secondary identifiers, and FHIR/Direct endpoints (with their descriptions and routing address)
Only LOCATION (practice) address rows are kept for individual providers, so their mailing address — often a home address — is withheld; organizations keep both LOCATION and MAILING rows
Four-way partition:
found(resolved records),notFound(confirmed absence — deactivated or never enumerated),errored(upstream failure, distinct from absence — retry these),invalid(failed the NPI check digit — never looked up)Throws
invalid_npi_formatwhen every requested NPI fails the check digit, andnone_foundonly when every NPI looked up is a confirmed absence; an upstream failure on any NPI surfaces as that underlying error instead
npi_lookup_taxonomy tool
Three modes:
resolve(plain-language term → matching codes/descriptions),get(exact code → full entry, including NUCC'snotes),browse(walk grouping → classification → specialization, filterable by grouping and NPIsection)Every entry carries
status(active/inactive) and, for an inactive code, thereplacedBycode NUCC names;resolvenever returns inactive codes, whilegetandbrowsestill do. A query that matches only inactive codes fails withno_matchnaming them and their replacementsCredential abbreviations resolve, dotted or not (
rn,R.N.,np,pa,crna,lpn,lvn,emt,er). A query made only of generic words, singular or plural (physician,doctors,M.D.,specialist,providers), names no specialty, so it fails withno_matchand a hint tobrowse, rather than matching an unrelated wordresolve/browsecap results atlimit(≤50, default 20) and disclosetruncated; page past the cap withskip(0–1000, raised bylimiteach call)A resolved entry's
specialization(orclassificationwhen specialization is absent) is the exact valuenpi_search_providers.taxonomy_descriptionacceptsTyped error reasons:
no_match,missing_argument
npi://provider/{npi} resource
Returns the same decoded record as
npi_get_provider, for one NPI, asapplication/json— only LOCATION address rows are kept for individual providersnpimust be a well-formed 10-digit NPI;invalid_npi_formatwhen it fails the NPI check digit (no registry request),no_recordwhen the registry has none (deactivated or never enumerated)
npi://taxonomy/{code} resource
Returns the same entry as
npi_lookup_taxonomymodeget(NUCCnotes,status, andreplacedByincluded; inactive codes stay readable), asapplication/json; cached publicly for 24 hourscodemust match^\d{3}[A-Z0-9]{6}X$;no_matchwhen no entry exists for the code
Features
Built on @cyanheads/mcp-ts-core: stdio and Streamable HTTP transports, pluggable auth (none / jwt / oauth), swappable storage (in-memory, filesystem, Supabase, Cloudflare KV/R2/D1), structured logging with optional OpenTelemetry tracing.
NPI/NPPES-specific:
Keyless — runs against the public CMS NPPES NPI Registry API (v2.1) with no API key or account
Bundled NUCC taxonomy — the 883-code Healthcare Provider Taxonomy (v26.1) ships in the image and loads into an in-memory index at startup, so specialty resolution and code lookups work fully offline with no second upstream
Specialty resolution turns a vague term ("heart doctor") into the precise taxonomy description the registry filters on, and echoes the match back for the agent to verify
Detects the registry's quirk of returning HTTP 200 with an
Errors[]body on validation failure and maps it to typed, recoverable error reasons
Agent-friendly output:
Provenance on search — the resolved taxonomy and the exact
taxonomy_descriptionsent to the registry are echoed back, so agents can see what was actually searched and re-run with a different codeHonest pagination — the returned count is disclosed as the page size, never a fabricated grand total; a full page names the exact next page, and a broad query that hits the 1200-match reachable ceiling gets the postal-code prefixes that continue it
Graceful partial failure —
npi_get_providerreturns per-NPIfound/notFound/errored/invalidrows instead of failing the whole batch
Getting started
Public Hosted Instance
A public instance is available at https://npi-providers.caseyjhand.com/mcp — no installation required. Point any MCP client at it via Streamable HTTP, with this client config:
{
"mcpServers": {
"npi-providers-mcp-server": {
"type": "streamable-http",
"url": "https://npi-providers.caseyjhand.com/mcp"
}
}
}Self-Hosted / Local
Add the following to your MCP client configuration file. No API key is required — the upstream NPPES registry is keyless.
{
"mcpServers": {
"npi-providers-mcp-server": {
"type": "stdio",
"command": "bunx",
"args": ["@cyanheads/npi-providers-mcp-server@latest"],
"env": {
"MCP_TRANSPORT_TYPE": "stdio",
"MCP_LOG_LEVEL": "info"
}
}
}
}Or with npx (no Bun required):
{
"mcpServers": {
"npi-providers-mcp-server": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@cyanheads/npi-providers-mcp-server@latest"],
"env": {
"MCP_TRANSPORT_TYPE": "stdio",
"MCP_LOG_LEVEL": "info"
}
}
}
}Or with Docker:
{
"mcpServers": {
"npi-providers-mcp-server": {
"type": "stdio",
"command": "docker",
"args": ["run", "-i", "--rm", "-e", "MCP_TRANSPORT_TYPE=stdio", "ghcr.io/cyanheads/npi-providers-mcp-server:latest"]
}
}
}For Streamable HTTP, set the transport and start the server:
MCP_TRANSPORT_TYPE=http MCP_HTTP_PORT=3010 bun run start:http
# Server listens at http://localhost:3010/mcpPrerequisites
Bun v1.4.0 or higher (or Node.js v24+).
No API key — the NPPES NPI Registry API is public and keyless. The NUCC taxonomy is bundled, so there is no second data source to provision.
Installation
Clone the repository:
git clone https://github.com/cyanheads/npi-providers-mcp-server.gitNavigate into the directory:
cd npi-providers-mcp-serverInstall dependencies:
bun installConfigure environment (optional):
cp .env.example .env
# edit .env only if you need to override the NPPES base URL or timeoutConfiguration
No required variables — the server runs out of the box against the keyless NPPES registry. All variables below are optional overrides.
Variable | Description | Default |
| NPPES NPI Registry API base URL. Override for a private mirror or testing. |
|
| Per-request HTTP timeout for NPPES calls, in milliseconds. |
|
| Transport: |
|
| Port for the HTTP server. |
|
| Auth mode: |
|
| HTTP session handling: |
|
| Log level (RFC 5424). |
|
| Storage backend. |
|
| Enable OpenTelemetry instrumentation (spans, metrics, completion logs). |
|
See .env.example for the full list of optional overrides.
Running the server
Local development
Build and run:
# One-time build bun run rebuild # Run the built server bun run start:stdio # or bun run start:httpRun checks and tests:
bun run devcheck # Lint, format, typecheck, security bun run test # Vitest test suite bun run lint:mcp # Validate MCP definitions against spec
Docker
docker build -t npi-providers-mcp-server .
docker run --rm -e MCP_TRANSPORT_TYPE=http -p 3010:3010 npi-providers-mcp-serverThe Dockerfile defaults to HTTP transport, stateless session mode, and logs to /var/log/npi-providers-mcp-server. OpenTelemetry peer dependencies are installed by default — build with --build-arg OTEL_ENABLED=false to omit them.
Project structure
Directory | Purpose |
|
|
| Server-specific environment variable parsing and validation with Zod. |
| Tool definitions ( |
| Resource definitions ( |
| NPPES NPI Registry API client — query building, |
| Bundled NUCC taxonomy service — in-memory index for resolve / get / browse. |
| Unit and integration tests mirroring |
Development guide
See CLAUDE.md/AGENTS.md for development guidelines and architectural rules. The short version:
Handlers throw, framework catches — no
try/catchin tool logicUse
ctx.logfor request-scoped logging,ctx.statefor tenant-scoped storageRegister new tools and resources in the
createApp()arraysWrap external API calls: validate raw → normalize to domain type → return output schema; never fabricate missing fields
Data attribution
Provider data from the CMS NPPES NPI Registry (public domain). The bundled specialty codes are the NUCC Health Care Provider Taxonomy, © American Medical Association on behalf of the National Uniform Claim Committee (NUCC), redistributed unmodified beyond formatting under the NUCC permission. See NOTICE.
Contributing
Issues are welcome. Run checks and tests before submitting:
bun run devcheck
bun run testLicense
Apache-2.0 — see LICENSE for details.
This server cannot be deployed
Maintenance
Related MCP Connectors
Healthcare provider & compliance intel: NPPES lookup, OIG/SAM exclusion screening, FDA enforcement.
Search a healthcare provider directory and get full provider details by id.
US provider, KOL, executive and organization search over de-identified claims data.
Related MCP Servers
- FlicenseNot gradedqualityBmaintenanceSource-provenanced US federal healthcare provider data over MCP. Resolve any NPI or CCN across NPPES, OIG LEIE, SAM.gov, state Medicaid exclusions, CMS PECOS, Care Compare, and Open Payments — every field carries a 14-field provenance contract, and an "excluded or compromised anywhere" check runs on every lookup.-
- AlicenseNot gradedqualityDmaintenanceMCP server for looking up and searching US healthcare providers in the CMS NPPES NPI Registry.MIT
- AlicenseNot gradedqualityCmaintenanceEnables querying healthcare provider information from the CMS NPI Registry using a 10-digit National Provider Identifier (NPI).1 npmMIT
- FlicenseNot gradedqualityCmaintenanceProvides tools to look up healthcare providers and organizations by NPI number and to search the CMS NPPES NPI Registry by name, location, taxonomy, and other criteria.-