@fhirfly-io/mcp-server 0.3.0 → 0.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +7 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -15,6 +15,7 @@ This package lets Claude Desktop look up real healthcare reference data includin
15
15
  - **FDA Drug Labels** - Prescribing information
16
16
  - **SNOMED CT** - Clinical concepts (IPS free set)
17
17
  - **Connectivity** - Provider FHIR endpoints and Direct addresses
18
+ - **SMA** - State Medicaid Agency FHIR endpoint directory (CMS)
18
19
  - **Claims Intelligence** - NCCI edits, MUE limits, PFS/RVU data, coverage determinations
19
20
 
20
21
  When you ask Claude about medications, providers, or clinical codes, it can look up accurate, current information instead of relying on training data.
@@ -71,6 +72,8 @@ Try asking Claude:
71
72
  - "Look up NPI 1234567893"
72
73
  - "Search for COVID vaccines in the CVX database"
73
74
  - "What are the drug interactions for Lipitor?"
75
+ - "Which states have implemented Medicaid FHIR endpoints?"
76
+ - "Show me the FHIR endpoint details for California's Medicaid program"
74
77
 
75
78
  Claude should use the FHIRfly tools to look up real data.
76
79
 
@@ -102,6 +105,9 @@ Claude should use the FHIRfly tools to look up real data.
102
105
  | `snomed_search` | Search SNOMED CT IPS concepts |
103
106
  | `snomed_mappings` | Find cross-terminology mappings for a SNOMED concept |
104
107
  | `npi_connectivity` | Look up provider connectivity (FHIR endpoints) |
108
+ | `sma_list_states` | List states with Medicaid FHIR endpoint status |
109
+ | `sma_get_state` | Get SMA FHIR endpoint details for a state |
110
+ | `sma_stats` | Get aggregate SMA implementation statistics |
105
111
  | `ncci_validate` | Check if two codes can be billed together (NCCI) |
106
112
  | `mue_lookup` | Look up max units of service (MUE limits) |
107
113
  | `pfs_lookup` | Look up Medicare fee schedule / RVU data |
@@ -197,6 +203,7 @@ Your API key is sent to FHIRfly over HTTPS. No healthcare data is stored locally
197
203
  | CVX/MVX | CDC | Public domain |
198
204
  | FDA Drug Labels | FDA/openFDA | Public domain |
199
205
  | SNOMED CT IPS | SNOMED International | CC BY 4.0 |
206
+ | SMA Endpoint Directory | CMS | Public domain |
200
207
  | NCCI/MUE/PFS | CMS | Public domain |
201
208
 
202
209
  FHIRfly aggregates and indexes these data sources. See [fhirfly.io/docs](https://fhirfly.io/docs) for details.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fhirfly-io/mcp-server",
3
- "version": "0.3.0",
3
+ "version": "0.4.0",
4
4
  "description": "FHIRfly MCP server for Claude Desktop - Healthcare reference data via Model Context Protocol",
5
5
  "author": "FHIRfly.io LLC <admin@fhirfly.io>",
6
6
  "license": "MIT",