Medagent Pacs 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
    "medagent-pacs-server": {
      "url": "https://insight-rx-6a6d7e98-vectorpoint-srmist.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
    "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
Available Tools
query_prior_studies

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.

get_patient_metadata

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_patient_studies_summary

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.

search_studies_by_criteria

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.

get_study_report_impression

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.

get_study_metadata

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_studies

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_clinical_guidelines

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.

get_guideline_by_id

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.