A powerful MCP server built with NitroStack
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:
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
"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
Register a new patient (onboarding). Does not assign a department — call assign_department separately with the returned patientId.
Get a single patient by ID, including their assigned department if set
List/search registered patients with pagination
Recommend the best hospital department for a set of reported symptoms, and optionally save the recommendation onto a patient record
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/search/filter doctors with pagination, department, availability, and sort options
Get the full profile of a single doctor by ID
Get a doctor's current status, today's schedule, and appointment slots
Book an appointment with a doctor at a specific date and free slot time
List appointments, optionally filtered by patient, doctor, or status
Get a single appointment by ID
Add a doctor's consultation note (diagnosis, notes, prescribed medicines) for a patient
Share an existing consultation note with another doctor for collaboration or a second opinion
Request a lab test/report for a patient
Get a patient's full medical record: consultation notes, shared notes, and lab report requests
Generate a PDF invoice for a completed/confirmed appointment
Generate a PDF prescription from a consultation note
Retrieve a previously generated report (invoice or prescription) by report ID
List/search pharmacy medicines with pagination, category filter, and in-stock filter
Prescribe a medicine to a patient, decrementing pharmacy stock
Send an appointment confirmation notification to a patient (simulated — logs a notification record)
Send an appointment reminder notification to a patient (simulated — logs a notification record)
Notify a patient that a generated report (invoice/prescription) is ready (simulated — logs a notification record)