Server data from the Official MCP Registry
Hosted MCP server exposing US hospital procedure cost data to AI assistants
Hosted MCP server exposing US hospital procedure cost data to AI assistants
Remote endpoints: streamable-http: https://mcp.medprice.ai/mcp
Valid MCP server (2 strong, 4 medium validity signals). No known CVEs in dependencies. Imported from the Official MCP Registry.
1 tool verified · Open access · 1 issue found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Remote Plugin
No local installation needed. Your AI client connects to the remote endpoint directly.
Add this to your MCP configuration to connect:
{
"mcpServers": {
"io-github-medprice-ai-mcp-medprice-ai": {
"url": "https://mcp.medprice.ai/mcp"
}
}
}From the project's GitHub README.
A hosted MCP server exposing US hospital procedure 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 one tool, get_hospital_procedure_cost, which looks up cost stats for a billing code across hospitals. Once installed, you can just ask your assistant something like:
What's the fee schedule cost of MS-DRG 652 at MedPrice AI's hospitals?
which calls the tool with:
{
"code_type": "MS-DRG",
"code": "652",
"methodology": "fee schedule"
}
and returns:
{
"mca": {
"hospital": "MCA",
"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"
}
},
"uihc": {
"hospital": "UIHC",
"found": true,
"cost": {
"code_type": "MS-DRG",
"code": "652",
"min": "22436.13",
"max": "170932.00",
"avg": "22981.01",
"median": "22884.85",
"std_dev": "462.26"
}
}
}
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/procedure 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
Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Web content fetching and conversion for efficient LLM usage
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.