Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
cyanheads avatar

Npi Providers Mcp Server

  • 1 repo stars
  • Updated July 11, 2026
  • cyanheads/npi-providers-mcp-server

Look up US healthcare providers in the NPPES NPI registry and resolve NUCC specialty codes.

About

Look up US healthcare providers in the NPPES NPI registry and resolve NUCC specialty codes. Exposes 3 MCP tools including | Tool | Description |, |. Look up US healthcare providers in the NPPES NPI registry and resolve NUCC specialty codes. <h1>@cyanheads/npi-providers-mcp-server</h1> <p><b>Look up US healthcare providers in the NPPES NPI registry and resolve NUCC specialty codes via MCP. STDIO or Streamable HTTP.</b> Install via Claude Desktop, Cursor, or any MCP-compatible client using the server manifest from the upstream repository.

  • Look up US healthcare providers in the NPPES NPI registry and resolve NUCC specialty codes.
  • 3 registered MCP tools for structured agent access.
  • Category: AI & LLM Tools with build/integrations journey placement.
  • Compatible with Claude Desktop, Cursor, and MCP clients.
  • Upstream manifest: npi-providers-mcp-server.

Npi Providers Mcp Server by the numbers

  • Exposes 3 verified tools (MCP introspection)
  • Data as of Jul 12, 2026 (Skillselion catalog sync)
terminal
claude mcp add --env MCP_LOG_LEVEL=YOUR_MCP_LOG_LEVEL --env NPPES_API_BASE_URL=YOUR_NPPES_API_BASE_URL --env NPPES_TIMEOUT_MS=YOUR_NPPES_TIMEOUT_MS npi-providers-mcp-server -- npx -y @cyanheads/npi-providers-mcp-server run

Add your badge

Show developers this MCP server is listed on Skillselion. Paste this into your README.

Listed on Skillselion
repo stars1
Package@cyanheads/npi-providers-mcp-server
TransportSTDIO, HTTP
AuthNone
Tools3
Last updatedJuly 11, 2026
Repositorycyanheads/npi-providers-mcp-server

How do I connect Npi Providers Mcp Server to my MCP client?

Look up US healthcare providers in the NPPES NPI registry and resolve NUCC specialty codes.

Who is it for?

Teams wiring Npi Providers Mcp Server into Claude, Cursor, or custom agents for ai & llm tools.

Skip if: Skip when you need a non-MCP SDK or hosted API without stdio/SSE transport.

What you get

Working Npi Providers Mcp Server MCP server with verified tool registration and client config.

By the numbers

  • [object Object]
At a glance

Npi Providers Mcp Server capabilities & compatibility

Capabilities
npi providers mcp server mcp tool registration · npi providers mcp server client configuration · npi providers mcp server agent workflow integrat
Use cases
api development
Runs
Runs locally
From the docs

What Npi Providers Mcp Server says it does

Look up US healthcare providers in the NPPES NPI registry and resolve NUCC specialty codes.
README.md

Tools 3

Public tool metadata - what this server can do for an agent.

npi_search_providers12 params

Search the NPPES NPI registry for individual practitioners and healthcare organizations by name, organization name, location, provider type, and specialty. The specialty filter accepts plain-language terms (e.g. "cardiologist", "endocrinologist in Seattle") and resolves them through the bundled NUCC taxonomy to the registry's exact taxonomy descriptions before searching; the resolved taxonomy is echoed back so you can see what was actually searched. Returns a compact row per provider — NPI, name, primary specialty, city/state, type, and active/deactivated status — suitable for disambiguation; call npi_get_provider with an NPI for the full record. At least one search criterion is required, and the registry rejects state-only searches (pair state with another filter). The registry never reports a true match total and only the first 1200 matches are reachable, so broad queries are capped — narrow with more filters.

  • name_searchstringConvenience shortcut: a single person's name, split into first/last heuristically. For precise control use first_name/last_name.
  • first_namestringIndividual first name. Trailing wildcard "*" allowed with at least 2 leading characters.
  • last_namestringIndividual last name. Trailing wildcard "*" allowed with at least 2 leading characters.
  • organization_namestringOrganization name (implies provider_type organization). Trailing wildcard "*" allowed with at least 2 leading characters.
  • provider_typestringRestrict to individuals (NPI-1) or organizations (NPI-2). Omit to search both.
  • specialtystringPlain-language specialty (e.g. "pediatric cardiologist"), resolved through the bundled NUCC taxonomy to exact descriptions before searching. The matched taxonomy is echoed in the result. Mutually exclusive with taxonomy_description.
  • taxonomy_descriptionstringExact NUCC taxonomy description for direct passthrough — use when the taxonomy description is already known. Mutually exclusive with specialty.
  • citystringPractice-location city.
  • statestring2-letter state code (e.g. "WA"). The registry rejects state-only searches — pair it with another criterion.
  • postal_codestringPractice-location postal/ZIP code (5 or 9 digits).
  • limitintegerMaximum providers to return (1–200; the registry caps at 200).
  • skipintegerResults to skip for pagination (0–1000). Only the first 1200 matches are reachable; skip beyond 1000 silently returns the same window — narrow the query instead of paging further.
npi_get_provider1 param

Fetch the complete NPPES record for one or more NPI numbers (up to 10 per call). Decodes an NPI from a claim, prescription, or another health data source into a fully populated provider profile: every taxonomy with its primary flag, license number and state; all practice and mailing addresses; credential, sex, sole-proprietor flag; enumeration and last-updated dates; active/deactivated status; secondary identifiers (Medicaid, etc.); and FHIR/Direct endpoints. The 10-digit NPI format is validated before any API call. Reports partial success: well-formed NPIs with no registry record (deactivated or never enumerated) land in notFound rather than failing the whole call.

  • npisrequiredA single 10-digit NPI, or an array of up to 10. Each is validated as exactly 10 digits before any API call.
npi_lookup_taxonomy6 params

Resolve and browse the NUCC Healthcare Provider Taxonomy — the specialty code set NPPES uses — fully offline (bundled). Mode `resolve` turns a plain-language specialty (e.g. "cardiologist", "heart doctor") into matching taxonomy codes and their canonical descriptions; mode `get` returns the full entry for an exact code; mode `browse` walks the hierarchy (grouping → classification → specialization), optionally filtered by grouping and by NPI section (Individual/NPI-1 vs Non-Individual/NPI-2). Grounding a plain-language specialty here before calling npi_search_providers ensures the correct taxonomy code is sent rather than returning nothing.

  • modestringrequiredresolve: plain term → codes. get: exact code → entry. browse: walk the hierarchy.
  • querystringFor mode "resolve": the plain-language specialty term to resolve (e.g. "pediatric cardiologist").
  • codestringFor mode "get": the exact NUCC taxonomy code (e.g. "207RC0000X").
  • groupingstringFor mode "browse": filter to a top-level grouping by case-insensitive substring (e.g. "physicians").
  • sectionstringFor mode "browse": filter by NPI section — Individual (NPI-1) or Non-Individual (NPI-2).
  • limitintegerMaximum entries to return for resolve/browse (1–50). Ignored for get.
README.md

@cyanheads/npi-providers-mcp-server

Look up US healthcare providers in the NPPES NPI registry and resolve NUCC specialty codes via MCP. STDIO or Streamable HTTP.

3 Tools • 2 Resources

Version License Docker MCP SDK npm TypeScript Bun

Install in Claude Desktop Install in Cursor Install in VS Code

Framework


Tools

Three tools covering the provider directory — search the registry, decode an NPI to its full record, and resolve plain-language specialties through the bundled taxonomy:

Tool Description
npi_search_providers Search the NPPES registry by name, organization, location, provider type, and specialty. Plain-language specialties resolve through the bundled NUCC taxonomy before searching.
npi_get_provider Fetch the complete NPPES record for up to 10 NPIs — taxonomies, addresses, credentials, identifiers, endpoints, and status.
npi_lookup_taxonomy Resolve, fetch, or browse the NUCC Healthcare Provider Taxonomy — fully offline.

npi_search_providers

Search the registry for individual practitioners and organizations, with specialty resolution and honest pagination disclosure.

  • Search by name_search shortcut, explicit first_name / last_name, organization_name, city / state / postal_code, and provider_type (individual / organization)
  • Plain-language specialty (e.g. "cardiologist") resolves through the bundled NUCC taxonomy to the registry's exact descriptions before searching; the resolved taxonomy is echoed back so you can see what was actually searched
  • taxonomy_description escape hatch for callers who already hold an exact NUCC description (mutually exclusive with specialty)
  • Trailing-wildcard (*) name matching, with the registry's ≥2-leading-character rule documented inline
  • Discloses that the returned count is the page size — never a grand total — and that only the first 1200 matches are reachable, steering broad queries toward narrower filters

npi_get_provider

Decode one or more NPIs into fully populated provider profiles — the tool to turn an NPI from a claim, prescription, or another health data source into a known provider.

  • Batch fetch up to 10 NPIs per call; the 10-digit format is validated before any API call
  • Returns every taxonomy (with its primary flag, license number and state), all practice and mailing addresses, credential, sex, sole-proprietor flag, enumeration and last-updated dates, secondary identifiers (Medicaid, etc.), and FHIR/Direct endpoints
  • Partial-success reporting — well-formed NPIs with no registry record (deactivated or never enumerated) land in notFound rather than failing the whole call

npi_lookup_taxonomy

Resolve and browse the NUCC Healthcare Provider Taxonomy — the specialty code set NPPES uses — fully offline from the bundled code set.

  • resolve — turn a plain-language specialty into matching taxonomy codes and canonical descriptions (the value the search tools filter on)
  • get — return the full entry for an exact taxonomy code
  • browse — walk the hierarchy (grouping → classification → specialization), filterable by grouping and by NPI section (Individual/NPI-1 vs Non-Individual/NPI-2)

Resources and prompts

Type Name Description
Resource npi://provider/{npi} A single provider's full decoded record by NPI — the resource twin of npi_get_provider.
Resource npi://taxonomy/{code} A single NUCC taxonomy entry by code — the resource twin of npi_lookup_taxonomy mode get.

All resource data is also reachable via tools. The resources are convenience twins for resource-capable clients; tool-only clients lose nothing.

Features

Built on @cyanheads/mcp-ts-core:

  • Declarative tool and resource definitions — single file per primitive, framework handles registration and validation
  • Unified error handling — handlers throw, framework catches, classifies, and formats
  • Pluggable auth: none, jwt, oauth
  • Swappable storage backends: in-memory, filesystem, Supabase, Cloudflare KV/R2/D1
  • Structured logging with optional OpenTelemetry tracing
  • STDIO and Streamable HTTP transports

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 879-code Healthcare Provider Taxonomy (v25.0) 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_description sent to the registry are echoed back, so agents can see what was actually searched and re-run with a different code
  • Honest pagination — the returned count is disclosed as the page size, never a fabricated grand total, with the 1200-match reachable ceiling surfaced when a broad query is capped
  • Graceful partial failure — npi_get_provider returns per-NPI found / notFound rows instead of failing the whole batch when some NPIs are deactivated or never enumerated

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 install

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/mcp

Prerequisites

  • Bun v1.3.2 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

  1. Clone the repository:
git clone https://github.com/cyanheads/npi-providers-mcp-server.git
  1. Navigate into the directory:
cd npi-providers-mcp-server
  1. Install dependencies:
bun install
  1. Configure environment (optional):
cp .env.example .env
# edit .env only if you need to override the NPPES base URL or timeout

Configuration

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_API_BASE_URL NPPES NPI Registry API base URL. Override for a private mirror or testing. https://npiregistry.cms.hhs.gov/api
NPPES_TIMEOUT_MS Per-request HTTP timeout for NPPES calls, in milliseconds. 15000
MCP_TRANSPORT_TYPE Transport: stdio or http. stdio
MCP_HTTP_PORT Port for the HTTP server. 3010
MCP_AUTH_MODE Auth mode: none, jwt, or oauth. none
MCP_LOG_LEVEL Log level (RFC 5424). info
STORAGE_PROVIDER_TYPE Storage backend. in-memory
OTEL_ENABLED Enable OpenTelemetry instrumentation (spans, metrics, completion logs). false

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:http
    
  • Run 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-server

The 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
src/index.ts createApp() entry point — registers tools and resources, inits services.
src/config Server-specific environment variable parsing and validation with Zod.
src/mcp-server/tools Tool definitions (*.tool.ts).
src/mcp-server/resources Resource definitions (*.resource.ts).
src/services/nppes NPPES NPI Registry API client — query building, Errors[]-on-200 detection, normalization.
src/services/taxonomy Bundled NUCC taxonomy service — in-memory index for resolve / get / browse.
tests/ Unit and integration tests mirroring src/.

Development guide

See CLAUDE.md/AGENTS.md for development guidelines and architectural rules. The short version:

  • Handlers throw, framework catches — no try/catch in tool logic
  • Use ctx.log for request-scoped logging, ctx.state for tenant-scoped storage
  • Register new tools and resources in the createApp() arrays
  • Wrap external API calls: validate raw → normalize to domain type → return output schema; never fabricate missing fields

Contributing

Issues and pull requests are welcome. Run checks and tests before submitting:

bun run devcheck
bun run test

License

Apache-2.0 — see LICENSE for details.


Provider data from the CMS NPPES NPI Registry (public domain). Specialty codes from the NUCC Health Care Provider Taxonomy (NUCC, bundled).

Recommended MCP Servers

FAQ

What does npi providers mcp server MCP do?

Look up US healthcare providers in the NPPES NPI registry and resolve NUCC specialty codes.

When should I use npi providers mcp server?

User asks about Npi Providers Mcp Server mcp, look up us healthcare providers in the nppes npi registry and resolve .

Is this MCP server safe to install?

Review the Security Audits panel and upstream source before connecting in production.

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.