drugbank_ddi

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

Check drug-drug interactions among a set of drugs. Returns curated interactions with severity, description, and management guidance. Accepts drug names or DrugBank IDs (comma-separated). Example: drugbank_ddi({ drugs: “warfarin, acetaminophen”, _apiKey: “your-key” }) or drugbank_ddi({ drugs: “DB00682,DB00316”, _apiKey: “your-key” })

Parameters

NameTypeRequiredDescription
drugsstringyesComma-separated list of drug names or DrugBank IDs to check against each other, e.g. “warfarin, aspirin” or “DB00682,DB00945”.
_apiKeystringyesDrugBank API key (commercial; trial keys at dev.drugbank.com).

Example call

Arguments

{
  "drugs": "warfarin, aspirin",
  "_apiKey": "your-drugbank-api-key"
}

curl

curl -X POST https://gateway.pipeworx.io/drugbank/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"drugbank_ddi","arguments":{"drugs":"warfarin, aspirin","_apiKey":"your-drugbank-api-key"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('drugbank_ddi', {
  "drugs": "warfarin, aspirin",
  "_apiKey": "your-drugbank-api-key"
});

More examples

{
  "drugs": "DB00682,DB00945",
  "_apiKey": "your-drugbank-api-key"
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build August 22, 2026