Clinical Trials Data

analyze_trial_phases

Analyze the distribution of trial phases for given search criteria. This tool analyzes the distribution of clinical trial phases (e.g., Phase 1, Phase 2, Phase 3) for a given set of search criteria. Input: - `conditions`: A list of medical conditions to filter the analysis. - `interventions`: A list of interventions to filter the analysis. - `sponsors`: A list of sponsors to filter the analysis. - `max_studies`: The maximum number of studies to include in the analysis. Defaults to 1000.

Remote plainyogurt21/clintrials-mcp

Other tools also called analyze_trial_phases? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "sponsors": {
      "anyOf": [
        {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "description": "Sponsors to analyze"
    },
    "conditions": {
      "anyOf": [
        {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "description": "Medical conditions to analyze"
    },
    "max_studies": {
      "type": "integer",
      "default": 1000,
      "maximum": 1000,
      "minimum": 1,
      "description": "Maximum number of studies to analyze"
    },
    "interventions": {
      "anyOf": [
        {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "description": "Interventions to analyze"
    }
  }
}