My 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
    "my-server": {
      "url": "https://hospita-6a5a4c0f-ar3ive-amrita-university-amritapuri-campus.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
    "my-server": {
      "serverUrl": "https://hospita-6a5a4c0f-ar3ive-amrita-university-amritapuri-campus.app.nitrocloud.ai/mcp"
    }
  }
}

Add the following configuration block to your Codex configuration file (~/.codex/config.toml):

[mcp_servers.my-server]
url = "https://hospita-6a5a4c0f-ar3ive-amrita-university-amritapuri-campus.app.nitrocloud.ai/mcp"

Connect directly using the Server-Sent Events endpoint:

https://hospita-6a5a4c0f-ar3ive-amrita-university-amritapuri-campus.app.nitrocloud.ai/mcp
Available Tools
register_patient

Register a new patient (onboarding). Does not assign a department — call assign_department separately with the returned patientId.

get_patient

Get a single patient by ID, including their assigned department if set

list_patients

List/search registered patients with pagination

assign_department

Recommend the best hospital department for a set of reported symptoms, and optionally save the recommendation onto a patient record

symptom_intake_step

Drives a one-question-at-a-time symptom intake. Call this after the user says something like "I have symptoms" — it returns exactly ONE next question to ask. Ask it, wait for the answer, then call this tool again with step+1 and the updated collected object. On the final step it returns readyForAssignment: true — call assign_department with the gathered symptoms next.

list_doctors

List/search/filter doctors with pagination, department, availability, and sort options

get_doctor

Get the full profile of a single doctor by ID

get_doctor_availability

Get a doctor's current status, today's schedule, and appointment slots

book_appointment

Book an appointment with a doctor at a specific date and free slot time

list_appointments

List appointments, optionally filtered by patient, doctor, or status

get_appointment

Get a single appointment by ID

add_consultation_note

Add a doctor's consultation note (diagnosis, notes, prescribed medicines) for a patient

share_with_doctor

Share an existing consultation note with another doctor for collaboration or a second opinion

request_lab_report

Request a lab test/report for a patient

get_patient_medical_record

Get a patient's full medical record: consultation notes, shared notes, and lab report requests

generate_invoice

Generate a PDF invoice for a completed/confirmed appointment

generate_prescription_pdf

Generate a PDF prescription from a consultation note

get_report

Retrieve a previously generated report (invoice or prescription) by report ID

list_medicines

List/search pharmacy medicines with pagination, category filter, and in-stock filter

prescribe_medicine

Prescribe a medicine to a patient, decrementing pharmacy stock

send_appointment_confirmation

Send an appointment confirmation notification to a patient (simulated — logs a notification record)

send_reminder

Send an appointment reminder notification to a patient (simulated — logs a notification record)

notify_report_available

Notify a patient that a generated report (invoice/prescription) is ready (simulated — logs a notification record)