nci_organization_getter
Retrieve detailed information on NCI organizations, including full name, contact details, roles, associated trials, and research focus areas. Requires NCI API key for access.
Instructions
Get detailed information about a specific organization from NCI.
Retrieves comprehensive details about an organization including:
- Full name and aliases
- Address and contact information
- Organization type and role
- Associated clinical trials
- Research focus areas
Requires NCI API key from: https://clinicaltrialsapi.cancer.gov/
Example usage:
- Get details about a specific cancer center
- Find contact information for trial sponsors
- View organization's trial portfolio
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. | |
organization_id | Yes | NCI organization ID (e.g., 'NCI-2011-03337') |
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"
},
"organization_id": {
"description": "NCI organization ID (e.g., 'NCI-2011-03337')",
"title": "Organization Id",
"type": "string"
}
},
"required": [
"organization_id"
],
"title": "nci_organization_getterArguments",
"type": "object"
}