Hosted MCP server exposing US hospital procedure cost data to AI assistants
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"io-github-medprice-ai-mcp-medprice-ai": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A hosted MCP server exposing US hospital procedure cost data to AI assistants.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in ai-ml / health
Dynamic problem-solving through sequential thought chains
Persistent memory using a knowledge graph
An autonomous agent that conducts deep research on any data using any LLM providers
🌊 The leading agent orchestration platform for Claude. Deploy intelligent multi-agent swarms, coordinate autonomous workflows, and build conversational AI systems. Features enterprise-grade architecture, distributed swarm intelligence, RAG integration, and native Claude Code / Codex Integration
MCP Security Weekly
Get CVE alerts and security updates for io.github.medprice-ai/mcp-medprice-ai and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A hosted MCP server exposing US hospital chargemaster cost data to AI assistants.
https://mcp.medprice.ai/mcpapi.medprice.ai:443claude mcp add --transport http mcp-medprice-ai https://mcp.medprice.ai/mcp
To share with everyone in a project, add --scope project (writes to .mcp.json). To make it available across all your projects, use --scope user.
The server exposes two tools:
list_hospitals — returns the supported hospitals with their hospital_id, EIN, name, locations, and last_updated_on.get_hospital_chargemaster_cost — looks up cost stats for a billing code at a single hospital.The typical flow is to call list_hospitals first to discover available hospitals and their IDs, then call get_hospital_chargemaster_cost with the desired hospital_id. Once installed, you can just ask your assistant something like:
What's the fee schedule cost of MS-DRG 652 at Medical City Alliance?
The assistant will call list_hospitals to find the hospital's ID, then call get_hospital_chargemaster_cost with:
{
"hospital_id": "1",
"code_type": "MS-DRG",
"code": "652",
"methodology": "fee schedule"
}
and returns:
{
"hospital": "MEDICAL CITY ALLIANCE",
"found": true,
"cost": {
"code_type": "MS-DRG",
"code": "652",
"min": "26851.11",
"max": "190885.00",
"avg": "34387.70",
"median": "28084.07",
"std_dev": "13735.94"
},
"description": {
"hospital_name": "MEDICAL CITY ALLIANCE",
"location": "3101 N Tarrant Pkwy, Fort Worth, TX, 76177",
"code_description": "KIDNEY TRANSPLANT",
"methodology_note": "fee schedule"
}
}
list_hospitalspage_size (optional) — maximum number of hospitals to return. Defaults to 20, capped at 100.page_token (optional) — opaque token from a previous response for pagination.get_hospital_chargemaster_costhospital_id (required) — opaque hospital identifier from list_hospitals.code_type (required) — code system, e.g. APR-DRG, CDM, CPT, HCPCS, MS-DRG, RC. Hospitals may also support additional proprietary code types.code (required) — the billing/chargemaster code.methodology (optional) — one of case rate, fee schedule, other, percent of total billed charges, per diem. Omit to aggregate across all methodologies.GRPC_HOST=api.medprice.ai:443 npx tsx src/index.ts
GRPC_HOST=<host:port> npx tsx src/index.ts
TRANSPORT=http GRPC_HOST=api.medprice.ai:443 npx tsx src/index.ts
All MCP requests go to POST /mcp. PORT defaults to 3000.
GRPC_HOST=api.medprice.ai:443 npx tsx src/test.ts
docker build -t mcp-medprice-ai .
docker run --rm -p 3000:3000 \
-e GRPC_HOST=api.medprice.ai:443 \
mcp-medprice-ai
TRANSPORT=http and PORT=3000 are set by default in the image. Override PORT if needed:
docker run --rm -p 8080:8080 \
-e GRPC_HOST=api.medprice.ai:443 \
-e PORT=8080 \
mcp-medprice-ai