Skip to main content
Glama

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
NameRequiredDescriptionDefault
cidYesPubChem Compound ID (CID)

Implementation Reference

  • 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) }] }; }
  • 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);

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Augmented-Nature/PubChem-MCP-Server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server