Clinical Trials Data

search_trials_by_intervention

Search clinical trials by intervention/treatment. This tool allows you to search for clinical trials based on a list of interventions or treatments. Input: - `interventions`: A list of strings, where each string is an intervention or treatment to search for. The search will find trials related to any of the specified interventions. Example: `['aspirin', 'chemotherapy']` - `max_studies`: The maximum number of studies to return. Defaults to 50. - `fields`: A list of specific fields to return in the results. If not provided, returns SEARCH_TOOL_DEFAULTS (9 essential fields: NCTId, BriefTitle, Acronym, Condition, Phase, InterventionName, LeadSponsorName, OverallStatus, HasResults).

Remote plainyogurt21/clintrials-mcp

Other tools also called search_trials_by_intervention? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "fields": {
      "anyOf": [
        {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "description": "Specific fields to return"
    },
    "max_studies": {
      "type": "integer",
      "default": 50,
      "maximum": 1000,
      "minimum": 1,
      "description": "Maximum number of studies to return"
    },
    "interventions": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Interventions/treatments to search for"
    }
  }
}