get_regulatory_info
Retrieve regulatory compliance data from FDA, EPA, and international agencies for chemical compounds using PubChem Compound ID.
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 main handler function for the 'get_regulatory_info' tool. It currently returns a placeholder response 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)Input schema definition for the 'get_regulatory_info' tool, requiring a 'cid' parameter (PubChem Compound ID).inputSchema: { type: 'object', properties: { cid: { type: ['number', 'string'], description: 'PubChem Compound ID (CID)' }, }, required: ['cid'], },
- src/index.ts:672-682 (registration)Registration of the 'get_regulatory_info' tool in the tools list provided to the MCP server, including name, description, and input 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)Dispatch case in the request handler switch statement that routes calls to 'get_regulatory_info' to its handler method.case 'get_regulatory_info': return await this.handleGetRegulatoryInfo(args);