batch_compound_lookup
Retrieve detailed compound data for multiple ChEMBL IDs in a single query, supporting up to 50 IDs per request on the ChEMBL MCP Server.
Instructions
Process multiple ChEMBL IDs efficiently
Input Schema
Name | Required | Description | Default |
---|---|---|---|
chembl_ids | Yes | Array of ChEMBL compound IDs (1-50) |
Input Schema (JSON Schema)
{
"properties": {
"chembl_ids": {
"description": "Array of ChEMBL compound IDs (1-50)",
"items": {
"type": "string"
},
"maxItems": 50,
"minItems": 1,
"type": "array"
}
},
"required": [
"chembl_ids"
],
"type": "object"
}