Skip to main content
Glama
Augmented-Nature

PubChem MCP Server

predict_admet_properties

Predict ADMET properties (Absorption, Distribution, Metabolism, Excretion, Toxicity) for chemical compounds using PubChem CID or SMILES string to evaluate drug-likeness and safety.

Instructions

Predict ADMET properties (Absorption, Distribution, Metabolism, Excretion, Toxicity)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
cidNoPubChem Compound ID (CID)
smilesNoSMILES string (alternative to CID)

Implementation Reference

  • The handler function that executes the predict_admet_properties tool. Currently implemented as a placeholder returning a 'not yet implemented' message.
    private async handlePredictAdmetProperties(args: any) {
      return { content: [{ type: 'text', text: JSON.stringify({ message: 'ADMET prediction not yet implemented', args }, null, 2) }] };
    }
  • Input schema definition for the predict_admet_properties tool, including optional cid or smiles parameters.
      name: 'predict_admet_properties',
      description: 'Predict ADMET properties (Absorption, Distribution, Metabolism, Excretion, Toxicity)',
      inputSchema: {
        type: 'object',
        properties: {
          cid: { type: ['number', 'string'], description: 'PubChem Compound ID (CID)' },
          smiles: { type: 'string', description: 'SMILES string (alternative to CID)' },
        },
        required: [],
      },
    },
  • src/index.ts:770-771 (registration)
    Registration and dispatch case in the CallToolRequestSchema handler that routes calls to the predict_admet_properties handler.
    case 'predict_admet_properties':
      return await this.handlePredictAdmetProperties(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