drug_indications

Pack: chembl · Endpoint: https://gateway.pipeworx.io/chembl/mcp

Retrieve approved drug indication records from ChEMBL filtered by molecule_chembl_id and/or MeSH disease ID; returns disease names, efo_id cross-references, and max clinical trial phase.

Parameters

NameTypeRequiredDescription
molecule_chembl_idstringno
mesh_idstringno
limitnumberno

Example call

Arguments

{
  "molecule_chembl_id": "CHEMBL25"
}

curl

curl -X POST https://gateway.pipeworx.io/chembl/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"drug_indications","arguments":{"molecule_chembl_id":"CHEMBL25"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('drug_indications', {
  "molecule_chembl_id": "CHEMBL25"
});

Response shape

FieldTypeDescription
page_metaobject
drug_indicationsarray
Full JSON Schema
{
  "type": "object",
  "description": "Drug indication records",
  "properties": {
    "page_meta": {
      "type": "object",
      "properties": {
        "limit": {
          "type": "number"
        },
        "offset": {
          "type": "number"
        },
        "count": {
          "type": "number"
        },
        "total_count": {
          "type": "number"
        }
      }
    },
    "drug_indications": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "drug_indication_id": {
            "type": "number"
          },
          "molecule_chembl_id": {
            "type": "string"
          },
          "mesh_id": {
            "type": "string"
          },
          "mesh_heading": {
            "type": "string"
          },
          "indication_refs": {
            "type": "array"
          }
        }
      }
    }
  }
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "chembl": {
      "url": "https://gateway.pipeworx.io/chembl/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026