target
Pack: chembl · Endpoint: https://gateway.pipeworx.io/chembl/mcp
Target record by ChEMBL target ID.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
chembl_id | string | yes |
Example call
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":"target","arguments":{}}}'
Response shape
| Field | Type | Description |
|---|---|---|
target_chembl_id | string | ChEMBL target ID |
pref_name | string | Preferred name |
target_type | string | Type of target |
organism | string | |
tax_id | number | null | |
target_components | array |
Full JSON Schema
{
"type": "object",
"description": "Target record from ChEMBL",
"properties": {
"target_chembl_id": {
"type": "string",
"description": "ChEMBL target ID"
},
"pref_name": {
"type": "string",
"description": "Preferred name"
},
"target_type": {
"type": "string",
"description": "Type of target"
},
"organism": {
"type": "string"
},
"tax_id": {
"type": [
"number",
"null"
]
},
"target_components": {
"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.