search_targets
Pack: guidetopharmacology · Endpoint: https://gateway.pipeworx.io/guidetopharmacology/mcp
Search the Guide to PHARMACOLOGY (IUPHAR/BPS) — an expert-curated pharmacology database — for protein targets by name. Returns matching targets with their GtoPdb target id, abbreviation, and type (e.g. GPCR, CatalyticReceptor, Enzyme, Transporter). Use the returned target id with target_interactions to find ligands that bind it. Keyless. Complements ChEMBL/DrugBank.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
name | string | yes | Target name or fragment to search for, e.g. “EGFR” or “dopamine receptor”. |
limit | number | no | Max results to return (default 15). |
Example call
Arguments
{
"name": "EGFR"
}
curl
curl -X POST https://gateway.pipeworx.io/guidetopharmacology/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_targets","arguments":{"name":"EGFR"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('search_targets', {
"name": "EGFR"
});
More examples
{
"name": "dopamine receptor",
"limit": 20
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"guidetopharmacology": {
"url": "https://gateway.pipeworx.io/guidetopharmacology/mcp"
}
}
}
See Getting Started for client-specific install steps.