MCP server exposing 3 tools for drugbank.
This URL is a JSON-RPC 2.0 endpoint over HTTP. Issue POST requests with a JSON-RPC body. Browsers and search crawlers land here on GET.
POST https://gateway.pipeworx.io/drugbank/mcp
Content-Type: application/json
{"jsonrpc":"2.0","id":1,"method":"tools/list"}
drugbank_ddi — 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" })drugbank_drug_names — Look up a drug by name or product. Resolves a query string to matching DrugBank drugs/products and their DrugBank IDs. Example: drugbank_drug_names({ query: "lipitor", _apiKey: "your-key" })drugbank_drug — Structured monograph (indication, MoA, dosing) for a drug. Returns indication, mechanism of action, dosages, and a summary of adverse effects for a single DrugBank drug. Example: drugbank_drug({ id: "DB00682", _apiKey: "your-key" })Code samples (curl / TypeScript / one-click client install), schemas, and the live playground are on the pack page:
https://pipeworx.io/packs/drugbank/
Pipeworx is an open MCP gateway connecting AI agents to live data. pipeworx.io