A powerful MCP server built with NitroStack
Add via Cursor Settings UI (Settings > Features > MCP > Add New MCP Server):
{
"mcpServers": {
// your other mcp servers
"care-mediator-server": {
"url": "https://jithu-demo-6a64e9e0-pixie-chicks-amrita-university-coimbatore.app.nitrocloud.ai/mcp"
}
}
}
Connect remote tools directly via Claude's Web UI:
Configure custom tools directly via ChatGPT's Web UI:
Add the following configuration block under mcpServers in your Antigravity configuration file (~/.gemini/config/mcp_config.json):
{
"mcpServers": {
// your other mcp servers
"care-mediator-server": {
"serverUrl": "https://jithu-demo-6a64e9e0-pixie-chicks-amrita-university-coimbatore.app.nitrocloud.ai/mcp"
}
}
}
Add the following configuration block to your Codex configuration file (~/.codex/config.toml):
[mcp_servers.care-mediator-server] url = "https://jithu-demo-6a64e9e0-pixie-chicks-amrita-university-coimbatore.app.nitrocloud.ai/mcp"
Connect directly using the Server-Sent Events endpoint:
https://jithu-demo-6a64e9e0-pixie-chicks-amrita-university-coimbatore.app.nitrocloud.ai/mcp
Get the official CGHS rate estimate for a procedure in a given city
List all CGHS-rated procedures available for a city
Get cashless status and claim decision for a patient from the reference dataset. Use get_live_case_status instead when you have a real caseId from a submitted case.
Check whether a hospital is in the insurer network
Fetch the full live case record from the Care Mediator backend by caseId. Returns claim status, objectivity report, coverage explainer, loan offers, and timeline. Use this whenever you have a real caseId (e.g. from the hospital portal or reconcile_case_by_id).
Submit an insurer decision (approve / partial / deny / more-info) against a live case. The decision is persisted on the backend, appended to the shared timeline, and immediately visible to the patient and hospital portals. Approval sets insurerApproved = hospitalEstimate and gap = 0. Partial approval requires approvedAmount. Deny and more-info require a note.
Get all loan offers with a transparent true-cost comparison (not just flat rate)
Cross-check a hospital case entry against CGHS rates and the insurer claim record, flagging any inconsistency
Build the single shared case record from raw inputs: objective CGHS report + coverage gap + (if needed) loan options. Use this for "what-if" queries where you have raw numbers but no submitted caseId. For a real submitted case use reconcile_case_by_id instead.
Fetch a real submitted case from the Care Mediator backend by caseId and return the full reconciled view: claim status, objectivity report, coverage explainer, gap, and loan offers. This is the primary tool for reviewing any case that has already been submitted through the hospital portal.
List all cases currently stored in the Care Mediator backend (newest first). Returns a summary of each case: caseId, patient, hospital, procedure, status, and gap.