get_compound_synonyms
Retrieve all names and synonyms for a specific compound using its PubChem CID. This tool helps streamline chemical identification and data lookup within the Unofficial PubChem MCP Server.
Instructions
Get all names and synonyms for a compound
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cid | Yes | PubChem Compound ID (CID) |
Input Schema (JSON Schema)
{
"properties": {
"cid": {
"description": "PubChem Compound ID (CID)",
"type": [
"number",
"string"
]
}
},
"required": [
"cid"
],
"type": "object"
}