A powerful MCP server built with NitroStack
Add via Cursor Settings UI (Settings > Features > MCP > Add New MCP Server):
{
"mcpServers": {
// your other mcp servers
"medagent-pacs-server": {
"url": "https://insight-rx-6a6d7e98-vectorpoint-srmist.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
"medagent-pacs-server": {
"serverUrl": "https://insight-rx-6a6d7e98-vectorpoint-srmist.app.nitrocloud.ai/mcp"
}
}
}
Add the following configuration block to your Codex configuration file (~/.codex/config.toml):
[mcp_servers.medagent-pacs-server] url = "https://insight-rx-6a6d7e98-vectorpoint-srmist.app.nitrocloud.ai/mcp"
Connect directly using the Server-Sent Events endpoint:
https://insight-rx-6a6d7e98-vectorpoint-srmist.app.nitrocloud.ai/mcp
Query the hospital PACS archive for a patient's prior imaging studies. Returns DICOM study metadata (study date, modality, view position, and the prior report impression) ordered oldest to newest, for comparison against the current radiograph. NOTE: this server is backed by a simulated archive -- every study is marked simulated:true and must not be treated as real patient history. PHI SENSITIVITY: returns patient-linked clinical data (simulated). Do not point this server at a real PACS until authentication is configured -- it is currently unauthenticated.
Retrieve demographics and imaging context for a patient (age, sex, and the view positions seen across their prior studies), for comparison against a current study. Read-only. PHI SENSITIVITY: returns patient-linked clinical data (simulated). Do not point this server at a real PACS until authentication is configured -- it is currently unauthenticated.
List a lightweight index of a patient's prior studies (studyId, date, modality, view position) without impression text, to pair with query_prior_studies or to pick studyIds for compare_studies. Read-only. PHI SENSITIVITY: returns patient-linked clinical data (simulated). Do not point this server at a real PACS until authentication is configured -- it is currently unauthenticated.
Filter a patient's prior studies by modality, view position, and/or date range. Returns the same lightweight index as list_patient_studies_summary. Read-only. PHI SENSITIVITY: returns patient-linked clinical data (simulated). Do not point this server at a real PACS until authentication is configured -- it is currently unauthenticated.
Retrieve the radiologist report impression text for one prior study, given a studyId from list_patient_studies_summary or query_prior_studies. Read-only. PHI SENSITIVITY: returns patient-linked clinical data (simulated). Do not point this server at a real PACS until authentication is configured -- it is currently unauthenticated.
Retrieve fuller DICOM-style metadata for one study: acquisition parameters (kVp, exposure, tube current, detector), acquiring device, body part, and view position. Read-only. PHI SENSITIVITY: returns patient-linked clinical data (simulated). Do not point this server at a real PACS until authentication is configured -- it is currently unauthenticated.
Compare the report impressions of two prior studies and return a structured diff of finding clauses: new (in B only), resolved (in A only), and unchanged (in both). This is a TEXT diff of what the two reports said, not an adjudicated clinical comparison -- a clinician confirms progression. Read-only. PHI SENSITIVITY: returns patient-linked clinical data (simulated). Do not point this server at a real PACS until authentication is configured -- it is currently unauthenticated.
Search the clinical guideline knowledge base by free text and return the top matching snippets with citations. Results are FIXTURES (source: FIXTURE_NOT_LIVE_GUIDELINES), not live guideline text, and must not be cited as clinical authority. Read-only retrieval: does not touch the signed vector index. PHI SENSITIVITY: none -- returns guideline text only, no patient data.
Retrieve the full fixture text of one guideline returned by search_clinical_guidelines. Results are FIXTURES (source: FIXTURE_NOT_LIVE_GUIDELINES), not live guideline text, and must not be cited as clinical authority. Read-only. PHI SENSITIVITY: none -- guideline text only, no patient data.