search_by_target
Identify compounds tested against a specific biological target (gene, protein, or pathway) and retrieve activity data (e.g., IC50, EC50, Ki) using the PubChem MCP Server.
Instructions
Find compounds tested against a specific biological target
Input Schema
Name | Required | Description | Default |
---|---|---|---|
activity_type | No | Type of activity (e.g., IC50, EC50, Ki) | |
max_records | No | Maximum number of results (1-1000, default: 100) | |
target | Yes | Target name (gene, protein, or pathway) |
Input Schema (JSON Schema)
{
"properties": {
"activity_type": {
"description": "Type of activity (e.g., IC50, EC50, Ki)",
"type": "string"
},
"max_records": {
"description": "Maximum number of results (1-1000, default: 100)",
"maximum": 1000,
"minimum": 1,
"type": "number"
},
"target": {
"description": "Target name (gene, protein, or pathway)",
"type": "string"
}
},
"required": [
"target"
],
"type": "object"
}