nci_intervention_getter
Retrieve comprehensive details about NCI interventions, including names, types, mechanisms, FDA status, clinical trials, and combination therapies. Requires an NCI API key for access.
Instructions
Get detailed information about a specific intervention from NCI.
Retrieves comprehensive details about an intervention including:
- Full name and synonyms
- Intervention type and category
- Mechanism of action (for drugs)
- FDA approval status
- Associated clinical trials
- Combination therapies
Requires NCI API key from: https://clinicaltrialsapi.cancer.gov/
Example usage:
- Get details about a specific drug
- Find all trials using a device
- View combination therapy protocols
Input Schema
Name | Required | Description | Default |
---|---|---|---|
api_key | No | NCI API key. Check if user mentioned 'my NCI API key is...' in their message. If not provided here and no env var is set, user will be prompted to provide one. | |
intervention_id | Yes | NCI intervention ID (e.g., 'INT123456') |
Input Schema (JSON Schema)
{
"properties": {
"api_key": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "NCI API key. Check if user mentioned 'my NCI API key is...' in their message. If not provided here and no env var is set, user will be prompted to provide one.",
"title": "Api Key"
},
"intervention_id": {
"description": "NCI intervention ID (e.g., 'INT123456')",
"title": "Intervention Id",
"type": "string"
}
},
"required": [
"intervention_id"
],
"title": "nci_intervention_getterArguments",
"type": "object"
}