Skip to main content
Glama
Augmented-Nature

Unofficial PubChem MCP Server

get_regulatory_info

Retrieve regulatory details from FDA, EPA, and international agencies for a specific PubChem Compound ID (CID). Access compliance and safety data efficiently.

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 executes the logic for the 'get_regulatory_info' tool. It currently returns a placeholder response indicating that 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:672-682 (registration)
    Registration of the 'get_regulatory_info' tool in the ListToolsRequestSchema handler, defining its 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'], }, },
  • Input schema definition for the 'get_regulatory_info' tool, specifying the required 'cid' parameter.
    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 CallToolRequestSchema handler that routes calls to the 'get_regulatory_info' tool to its handler method.
    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/Augmented-Nature-PubChem-MCP-Server'

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