search_drug_indications
Search for therapeutic indications and disease areas by drug type and specified condition using a structured query on the ChEMBL MCP Server.
Instructions
Search for therapeutic indications and disease areas
Input Schema
Name | Required | Description | Default |
---|---|---|---|
drug_type | No | Drug type filter (e.g., Small molecule, Antibody) | |
indication | Yes | Disease or indication search term | |
limit | No | Number of results to return (1-1000, default: 25) |
Input Schema (JSON Schema)
{
"properties": {
"drug_type": {
"description": "Drug type filter (e.g., Small molecule, Antibody)",
"type": "string"
},
"indication": {
"description": "Disease or indication search term",
"type": "string"
},
"limit": {
"description": "Number of results to return (1-1000, default: 25)",
"maximum": 1000,
"minimum": 1,
"type": "number"
}
},
"required": [
"indication"
],
"type": "object"
}