MCP Hub
Back to servers

mymedi-ai-mcp-server

Healthcare billing AI for agents — 12 tools for ICD-10/CPT/HCPCS code lookup (80K+ codes), prior auth prediction, medical NER, claims validation, HIPAA compliance auditing, and provider/drug enrichment. Pay-per-call via credits or USDC.

glama
Updated
Apr 23, 2026

@mymedi-ai/mcp-server

MCP server for healthcare AI. Connect Claude Desktop, Cursor, VS Code, or any MCP client to 20 HIPAA-compliant medical billing + clinical intelligence tools backed by 81K+ codes and 7 free government data sources.

Quick Start

Two ways to pay — pick either:

Option A: Register for credits (10 free)

curl -X POST https://mymedi-ai.com/bot-marketplace/register \
  -H "Content-Type: application/json" \
  -d '{"name": "my-agent"}'
# → { apiKey, credits: 10 }

Option B: Anonymous per-call USDC (no signup)

Send USDC on Base to the treasury wallet and include the signed payment in X-402-Payment header. True agent-to-agent commerce. See /agent/v1/pricing for details.

Or try free

curl "https://mymedi-ai.com/agent/v1/demo?code=99213"

Returns basic code metadata (10/hour rate-limited). Paid tier unlocks RVU, Medicare reimbursement (PFS + OPPS), crosswalks, and AI features.

Client Setup

Claude Desktop

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "mymedi-ai": {
      "command": "npx",
      "args": ["-y", "@mymedi-ai/mcp-server"],
      "env": {
        "MCP_API_KEY": "your-api-key"
      }
    }
  }
}

Cursor / VS Code

Add to MCP settings:

{
  "mymedi-ai": {
    "command": "npx",
    "args": ["-y", "@mymedi-ai/mcp-server"],
    "env": {
      "MCP_API_KEY": "your-api-key"
    }
  }
}

Claude Code

claude mcp add mymedi-ai -- npx -y @mymedi-ai/mcp-server

Tools (20)

Medical Coding

ToolDescriptionPrice
code_lookupLook up ICD-10, CPT, HCPCS codes (81K+ codes)$0.001
code_suggestAI code suggestions from clinical text$0.01
code_validateValidate code correctness and status$0.005
code_crossrefCross-reference codes across ICD-10/CPT/HCPCS$0.02
code_reimbursementMedicare PFS + OPPS reimbursement rates (RVU, $)$0.01

Prior Auth & Claims

ToolDescriptionPrice
pa_predictPrior auth approval prediction (0–1)$0.05
pa_statusCheck prior auth status$0.02
claims_validatePre-submission claims validation$0.05
ner_extractExtract medical entities from clinical text$0.02
compliance_auditHIPAA compliance audit$0.25

Drug Intelligence

ToolDescriptionPrice
drug_lookupOpenFDA drug info + adverse events$0.01
drug_interactionsFDA co-reported adverse event signals$0.03
drug_rxnormNIH RxNorm + clinical interactions$0.02
drug_enrichAI-enriched drug intelligence$0.03

Providers & Market

ToolDescriptionPrice
provider_searchNPI provider directory search$0.005
provider_enrichAI-enriched provider intelligence$0.05
provider_paymentsSunshine Act physician payments (CMS Open Payments)$0.02
market_analysisSpecialty market analysis by state$0.10

Clinical & Public Health

ToolDescriptionPrice
trials_searchActive clinical trials (ClinicalTrials.gov)$0.03
disease_surveillanceCDC NNDSS case counts + trends$0.02

Environment Variables

VariableDescriptionDefault
MCP_API_KEYAPI key from registration (omit for anonymous USDC)
MCP_API_BASE_URLAPI base URLhttps://mymedi-ai.com

Payment

  • Free tier: 10 starter credits on registration ($0.01 sample — enough to try the $0.001 and $0.005 tiers)
  • Credit rate: $0.001 per credit (1 credit = 1 cheapest call)
  • x402 USDC: Pay per call on Base chain — no signup, agent-native commerce
  • Stripe: Credit packages at mymedi-ai.com/bot-marketplace/credits/pricing
  • USDC deposit: Send to treasury wallet and redeem for credits

Credit Balance Headers

Every paid response includes:

HeaderMeaning
X-Credits-RemainingBalance after this call
X-Credits-SpentCredits this call consumed
X-Credits-Warninglow (<50), critical (<10), depleted (0)
X-Credits-Action-Requiredtop-up or top-up-soon when balance is tight

Your SDK/agent can watch for these to trigger auto-top-up.

SDK

For programmatic use without MCP, install the SDK:

npm install @mymedi-ai/sdk
import { MyMediAI } from '@mymedi-ai/sdk';

const client = new MyMediAI({ apiKey: 'your-api-key' });
const result = await client.codeLookup('M79.3');

Data Sources

All 7 license-free government sources:

  • ICD-10 / HCPCS / CPT: CMS PFS RVU 2026 (public domain)
  • NPI provider directory: CMS (public domain)
  • OpenFDA: drug labels, adverse events, interactions
  • RxNorm: NIH normalized drug terminology
  • ClinicalTrials.gov: active clinical trials
  • CMS Open Payments: Sunshine Act physician payments
  • CDC NNDSS: notifiable disease surveillance

Links

License

MIT

Reviews

No reviews yet

Sign in to write a review