Clinical Trials Data
get_field_statistics
Get statistical information about field values. This tool retrieves statistical information about the values of specified fields in the ClinicalTrials.gov database. Input: - `field_names`: A list of field names to get statistics for. - `field_types`: A list of field types to filter by. Example: `['ENUM', 'STRING']`
Remote plainyogurt21/clintrials-mcp
Other tools also called get_field_statistics?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"field_names": {
"anyOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"type": "null"
}
],
"default": null,
"description": "Field names to get statistics for"
},
"field_types": {
"anyOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"type": "null"
}
],
"default": null,
"description": "Field types to filter by (ENUM, STRING, DATE, INTEGER, NUMBER, BOOLEAN)"
}
}
}