mechanism
Pack: chembl · Endpoint: https://gateway.pipeworx.io/chembl/mcp
Raw ChEMBL mechanism records for one exact molecule ChEMBL ID (e.g. “CHEMBL1703”), returned verbatim from the API. Use when you already hold the precise molecule ID and want the unshaped rows; to start from a drug name, call chembl_mechanism.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
chembl_id | string | yes | molecule_chembl_id |
Example call
Arguments
{
"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":"mechanism","arguments":{"chembl_id":"CHEMBL25"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('mechanism', {
"chembl_id": "CHEMBL25"
});
Response shape
| Field | Type | Description |
|---|---|---|
page_meta | object | |
mechanisms | array |
Full JSON Schema
{
"type": "object",
"description": "Mechanism of action records",
"properties": {
"page_meta": {
"type": "object",
"properties": {
"limit": {
"type": "number"
},
"offset": {
"type": "number"
},
"count": {
"type": "number"
},
"total_count": {
"type": "number"
}
}
},
"mechanisms": {
"type": "array",
"items": {
"type": "object",
"properties": {
"mechanism_id": {
"type": "number"
},
"molecule_chembl_id": {
"type": "string"
},
"target_chembl_id": {
"type": "string"
},
"mechanism_of_action": {
"type": "string"
},
"action_type": {
"type": "string"
}
}
}
}
}
}
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.