get_regulatory_info
Retrieve regulatory data from FDA, EPA, and international agencies by inputting a PubChem Compound ID (CID). Access safety and compliance details for chemical compounds.
Instructions
Get regulatory information from FDA, EPA, and international agencies
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cid | Yes | PubChem Compound ID (CID) |
Implementation Reference
- src/index.ts:1191-1193 (handler)The handler function that implements the core logic of the get_regulatory_info tool. Currently a placeholder indicating the feature is not yet implemented.private async handleGetRegulatoryInfo(args: any) { return { content: [{ type: 'text', text: JSON.stringify({ message: 'Regulatory info not yet implemented', args }, null, 2) }] }; }
- src/index.ts:675-681 (schema)The input schema defining the parameters for the get_regulatory_info tool (requires 'cid').inputSchema: { type: 'object', properties: { cid: { type: ['number', 'string'], description: 'PubChem Compound ID (CID)' }, }, required: ['cid'], },
- src/index.ts:672-682 (registration)Registration of the tool in the ListToolsRequestSchema handler, including name, description, and schema.{ name: 'get_regulatory_info', description: 'Get regulatory information from FDA, EPA, and international agencies', inputSchema: { type: 'object', properties: { cid: { type: ['number', 'string'], description: 'PubChem Compound ID (CID)' }, }, required: ['cid'], }, },
- src/index.ts:798-799 (registration)The switch case in CallToolRequestSchema handler that dispatches execution to the tool's handler function.case 'get_regulatory_info': return await this.handleGetRegulatoryInfo(args);