Skip to main content
Glama

assess_drug_likeness

Evaluate chemical compounds for drug-like properties using Lipinski Rule of Five, Veber rules, and PAINS filters to identify promising candidates for pharmaceutical development.

Instructions

Assess drug-likeness using Lipinski Rule of Five, Veber rules, and PAINS filters

Input Schema

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

Implementation Reference

  • The handler function that executes the logic for the 'assess_drug_likeness' tool. It is currently a placeholder that returns a 'not yet implemented' message.
    private async handleAssessDrugLikeness(args: any) { return { content: [{ type: 'text', text: JSON.stringify({ message: 'Drug-likeness assessment not yet implemented', args }, null, 2) }] }; }
  • Input schema defining the parameters for the 'assess_drug_likeness' tool (cid or smiles).
    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:539-550 (registration)
    Registration of the 'assess_drug_likeness' tool in the tools array provided to server.setTools, including name, description, and schema.
    { name: 'assess_drug_likeness', description: 'Assess drug-likeness using Lipinski Rule of Five, Veber rules, and PAINS filters', 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:772-773 (registration)
    Dispatch case in the main tool request handler switch statement that routes 'assess_drug_likeness' calls to the specific handler method.
    case 'assess_drug_likeness': return await this.handleAssessDrugLikeness(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/k-lordbodin7/PubChem-MCP-Server'

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