get_compound_properties
Retrieve molecular properties like molecular weight, logP, and TPSA for chemical compounds using PubChem Compound IDs to support chemical analysis and research.
Instructions
Get molecular properties (MW, logP, TPSA, etc.)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cid | Yes | PubChem Compound ID (CID) | |
| properties | No | Specific properties to retrieve (optional) |
Input Schema (JSON Schema)
{
"properties": {
"cid": {
"description": "PubChem Compound ID (CID)",
"type": [
"number",
"string"
]
},
"properties": {
"description": "Specific properties to retrieve (optional)",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"cid"
],
"type": "object"
}