compare_activities
Analyze and compare bioactivity data for specific compounds and targets using the ChEMBL MCP Server. Identify activity patterns for up to 10 compounds against a defined target and activity type.
Instructions
Compare bioactivity data across multiple compounds or targets
Input Schema
Name | Required | Description | Default |
---|---|---|---|
activity_type | No | Activity type for comparison | |
molecule_chembl_ids | Yes | Array of ChEMBL compound IDs (2-10) | |
target_chembl_id | No | ChEMBL target ID for comparison |
Input Schema (JSON Schema)
{
"properties": {
"activity_type": {
"description": "Activity type for comparison",
"type": "string"
},
"molecule_chembl_ids": {
"description": "Array of ChEMBL compound IDs (2-10)",
"items": {
"type": "string"
},
"maxItems": 10,
"minItems": 2,
"type": "array"
},
"target_chembl_id": {
"description": "ChEMBL target ID for comparison",
"type": "string"
}
},
"required": [
"molecule_chembl_ids"
],
"type": "object"
}