loading…
Search for a command to run...
loading…
Healthcare billing AI for agents: ICD-10/CPT/HCPCS code lookup (81,769 codes with RVU + OPPS pricing), prior auth prediction, medical NER, claims validation, de
Healthcare billing AI for agents: ICD-10/CPT/HCPCS code lookup (81,769 codes with RVU + OPPS pricing), prior auth prediction, medical NER, claims validation, denial-risk scoring, HIPAA compliance auditing, and NPI/drug enrichment. 20 tools, 10 free credits then pay-per-call via credits or anonymous USDC (x402). npx @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.
Two ways to pay — pick either:
curl -X POST https://mymedi-ai.com/bot-marketplace/register \
-H "Content-Type: application/json" \
-d '{"name": "my-agent"}'
# → { apiKey, credits: 10 }
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.
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.
Add to claude_desktop_config.json:
{
"mcpServers": {
"mymedi-ai": {
"command": "npx",
"args": ["-y", "@mymedi-ai/mcp-server"],
"env": {
"MCP_API_KEY": "your-api-key"
}
}
}
}
Add to MCP settings:
{
"mymedi-ai": {
"command": "npx",
"args": ["-y", "@mymedi-ai/mcp-server"],
"env": {
"MCP_API_KEY": "your-api-key"
}
}
}
claude mcp add mymedi-ai -- npx -y @mymedi-ai/mcp-server
| Tool | Description | Price |
|---|---|---|
code_lookup |
Look up ICD-10, CPT, HCPCS codes (81K+ codes) | $0.001 |
code_suggest |
AI code suggestions from clinical text | $0.01 |
code_validate |
Validate code correctness and status | $0.005 |
code_crossref |
Cross-reference codes across ICD-10/CPT/HCPCS | $0.02 |
code_reimbursement |
Medicare PFS + OPPS reimbursement rates (RVU, $) | $0.01 |
| Tool | Description | Price |
|---|---|---|
pa_predict |
Prior auth approval prediction (0–1) | $0.05 |
pa_status |
Check prior auth status | $0.02 |
claims_validate |
Pre-submission claims validation | $0.05 |
ner_extract |
Extract medical entities from clinical text | $0.02 |
compliance_audit |
HIPAA compliance audit | $0.25 |
| Tool | Description | Price |
|---|---|---|
drug_lookup |
OpenFDA drug info + adverse events | $0.01 |
drug_interactions |
FDA co-reported adverse event signals | $0.03 |
drug_rxnorm |
NIH RxNorm + clinical interactions | $0.02 |
drug_enrich |
AI-enriched drug intelligence | $0.03 |
| Tool | Description | Price |
|---|---|---|
provider_search |
NPI provider directory search | $0.005 |
provider_enrich |
AI-enriched provider intelligence | $0.05 |
provider_payments |
Sunshine Act physician payments (CMS Open Payments) | $0.02 |
market_analysis |
Specialty market analysis by state | $0.10 |
| Tool | Description | Price |
|---|---|---|
trials_search |
Active clinical trials (ClinicalTrials.gov) | $0.03 |
disease_surveillance |
CDC NNDSS case counts + trends | $0.02 |
| Variable | Description | Default |
|---|---|---|
MCP_API_KEY |
API key from registration (omit for anonymous USDC) | — |
MCP_API_BASE_URL |
API base URL | https://mymedi-ai.com |
Every paid response includes:
| Header | Meaning |
|---|---|
X-Credits-Remaining |
Balance after this call |
X-Credits-Spent |
Credits this call consumed |
X-Credits-Warning |
low (<50), critical (<10), depleted (0) |
X-Credits-Action-Required |
top-up or top-up-soon when balance is tight |
Your SDK/agent can watch for these to trigger auto-top-up.
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');
All 7 license-free government sources:
MIT
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"mymedi-ai-mymedi-ai-mcp-server": {
"command": "npx",
"args": []
}
}
}PRs, issues, code search, CI status
Database, auth and storage
Reference / test server with prompts, resources, and tools.
Secure file operations with configurable access controls.