Care Mediator Server

v1.0.0

A powerful MCP server built with NitroStack

Connection Setup

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:

Add custom connector BETA
Connect Claude to your data and tools. Learn more about connectors or get started with pre-built ones.
Advanced settings
Only use connectors from developers you trust. Anthropic does not control which tools developers make available and cannot verify that they will work as intended or that they won't change.

Configure custom tools directly via ChatGPT's Web UI:

New App
PNG only. Best results at 256 x 256 px or larger. Max file size: 10 KB
Custom MCP servers introduce risk. Learn more
OpenAI hasn't reviewed this MCP server. Attackers may attempt to steal your data or trick the model into taking unintended actions, including destroying data.

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
Available Tools
get_treatment_estimate

Get the official CGHS rate estimate for a procedure in a given city

list_city_procedures

List all CGHS-rated procedures available for a city

get_claim_status

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_network_hospital

Check whether a hospital is in the insurer network

get_live_case_status

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_decision

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_loan_offers

Get all loan offers with a transparent true-cost comparison (not just flat rate)

build_objective_case_report

Cross-check a hospital case entry against CGHS rates and the insurer claim record, flagging any inconsistency

reconcile_case

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.

reconcile_case_by_id

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_cases

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.